API

Account intelligence, delivered via API

Pipe ChatAE's account research, signals, and contact data directly into your CRM, internal tools, or custom workflows.

View Docs
GET /api/v1/accounts
// Run on your server. Keep API keys out of browser code.
const response = await fetch(
  'https://www.app.chatae.ai/api/v1/accounts?q=acme&limit=50',
  { headers: { Authorization: `Bearer ${process.env.CHATAE_API_KEY}` } }
);
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const result = await response.json();

// Example response
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Acme Corp",
      "domain": "acme.example",
      "industry": "Software",
      "location": "San Francisco, CA",
      "logo_url": null,
      "folder": null,
      "tier": "tier_1",
      "research_result_count": 12,
      "created_at": "2025-01-10T08:00:00.000Z"
    }
  ],
  "has_more": false,
  "next_cursor": null
}

Everything you need, one API

GET/api/v1/accounts

List accessible accounts, search by name or domain, and page through existing research coverage.

GET/api/v1/alert-events?account_id=:id

Read detected alert events for an account, with summaries and source URLs. Poll with page_size=100.

GET/api/v1/contacts?account_id=:id

Read saved contacts for an account, including available emails, phone numbers, and titles.

GET/api/v1/accounts/:id/research

Retrieve existing research answers and citations for an account. The public API is read-only; webhook subscriptions are not available.

Use Cases

Illustrative workflows you can build with API data. Scores, enrichment actions, and downstream integrations shown here are implemented by your application, not by the read-only v1 endpoints.

Data Foundations
Pipeline Generation
Rep Productivity Tools
Data Foundations

CRM Enrichment

Waterfall across 1,000+ providers to keep every record complete — contacts, firmographics, technographics, all current.

SF
salesforce.acme_corpenriched
company_size—2,400Crustdata
annual_revenue—$340MCrunchbase
tech_stack—Snowflake, dbt, FivetranWeb Research
vp_engineering—Sarah ChenLinkedIn
direct_dial—+1 (415) 555-0142FullEnrich

Ready to integrate?

Get your API key and start pulling account intelligence in minutes.

View Docs