Skip to main content
GET
/
accounts
/
{id}
Retrieve Account
curl --request GET \
  --url https://api.amplemarket.com/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "pub_123",
  "name": "Acme Corp",
  "domain": "acme.com",
  "linkedin_url": null,
  "description": null,
  "industry": "Technology",
  "size": "51-200",
  "founded_year": null,
  "image_url": null,
  "location": {
    "city": "San Francisco",
    "state": null,
    "country": "US"
  },
  "owner": null,
  "tags": [],
  "insights": null,
  "insights_generated_at": null,
  "insights_status": "unavailable",
  "engagement": {
    "contacts_count": 0,
    "active_contacts_count": 0,
    "interested_contacts_count": 0,
    "first_contacted_at": null,
    "last_contacted_at": null,
    "last_engaged_at": null,
    "emails_sent": 0,
    "emails_received": 0,
    "linkedin_sent": 0,
    "linkedin_received": 0,
    "calls_made": 0,
    "calls_received": 0,
    "meetings": 0
  },
  "crm": null,
  "opportunities": null,
  "custom_fields": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Account public ID

Response

Successful

id
string
name
string | null
domain
string | null
linkedin_url
string | null
description
string | null
industry
string | null
size
string | null
founded_year
integer | null
image_url
string | null
location
object
owner
object
tags
string[]
insights
string | null
insights_generated_at
string<date-time> | null
insights_status
string
engagement
object
crm
object
opportunities
object
custom_fields
object