Skip to main content
POST
/
v1
/
crm
/
get-account
Get Account
curl --request POST \
  --url https://api.example.com/v1/crm/get-account \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "name": "<string>",
  "domain": "<string>"
}
'
{
  "accounts": [
    {
      "id": "<string>",
      "name": "<string>",
      "domain": "<string>",
      "website": "<string>",
      "address": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>",
      "owner_id": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.atonom.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
id
string

Look up by account id when set.

name
string

Look up by account name when set.

domain
string

Look up by primary domain when set.

Response

OK

accounts
object[]

Accounts matching the search criteria.