Account intelligence, delivered via API
Pipe ChatAE's account research, signals, and contact data directly into your CRM, internal tools, or custom workflows.
// 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
List accessible accounts, search by name or domain, and page through existing research coverage.
Read detected alert events for an account, with summaries and source URLs. Poll with page_size=100.
Read saved contacts for an account, including available emails, phone numbers, and titles.
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.
CRM Enrichment
Waterfall across 1,000+ providers to keep every record complete — contacts, firmographics, technographics, all current.