AtomicatAtomicat
atomicat.ai
  • English
  • Español
  • Português
Atomicat
  • Website
  • App
  • Help center
API docs
  • Introduction
  • Authentication
  • API reference

© 2026 Atomicat

Information
Account
    Get the authenticated accountgetDownload the OpenAPI documentget
Projects
    List projectsgetCreate a projectpostSearch projectsgetGet a projectgetDelete an unused projectdeleteUpdate a projectpatch
Sites
    List sitesgetCreate a sitepostSearch sitesgetGet a siteget
Pages
    List pagesgetCreate a blank pagepostCreate a page from a templatepostDuplicate a pagepostUpdate page metadatapatchUpdate mapped page contentpatchReplace template variablespostCheck whether a page can be publishedpostPublish a pagepostGet a pagegetDelete a pagedeleteList page templatesgetSearch page templatesgetSearch pagesget
Builder
    Read the page buildergetRead one builder nodegetUpdate node fieldspatchReplace a builder nodepatchUpdate the page reveal delaypatchRead editable content fieldsget
Quizzes
    List quizzesgetCreate a quiz pagepostSearch quizzesgetGet a quizgetCreate a quiz from a templatepost
Funnels
    List funnelsgetCreate a funnelpostUpdate a funnelpatchSearch funnelsgetGet a funnelget
Videos
    List videosgetUpdate video player settingspatchSearch videosgetGet a videoget
Products
    List productsgetCreate a productpostUpdate a productpatchSearch productsgetGet a productgetDelete a productdelete
Leads
    Search leadsget
Analytics
    Get account countsget
Webhooks
    Subscribe to an eventpostDisable a webhook subscriptiondeleteGet a sample webhook payloadget
Schemas
Atomicat API
Atomicat API

Account

Download schema

Identify the key and download this spec.


Get the authenticated account

GET
https://automation.atomicat-api.com/api/automation/v1
/me

Returns the Atomicat account that owns the API key. The workspace id is the same as the account id.

Required scope: account:read.

Get the authenticated account › Responses

The account.

Account
id
​string

Account id.

email
​string | null

Account email.

name
​string

Display name.

plan
​

Plan name when the account has one.

workspace_id
​string

Same value as id.

GET/me
curl --request GET \ --url https://automation.atomicat-api.com/api/automation/v1/me
Example Responses
{ "id": "user_123", "email": "owner@example.com", "name": "Ada Lovelace", "plan": "pro", "workspace_id": "user_123" }
json
application/json

Download the OpenAPI document

GET
https://automation.atomicat-api.com/api/automation/v1
/openapi.json

Public document. No API key is required. This is the same spec the docs site is built from.

Download the OpenAPI document › Responses

200

OpenAPI 3.0 JSON.

GET/openapi.json
curl --request GET \ --url https://automation.atomicat-api.com/api/automation/v1/openapi.json
Example Responses
{}
json
application/json

Projects