Predictable schemas
JSON responses use consistent field names and types across endpoints. No surprises when mapping to your internal models or ORM.
Developer API
Every capability in the Amaya DB interface is accessible programmatically. Search companies, enrich domains, look up contacts, and sync records into your product with REST endpoints, predictable schemas, bulk operations, and webhooks.

API-first architecture
Amaya DB was built as infrastructure — the data layer behind prospecting tools, enrichment pipelines, and product features. The API is not an afterthought bolted onto a UI. It is the same engine that powers search, enrichment, and export in the interface.
Responses follow consistent schemas across endpoints. Company records use the same field names whether you search, enrich, or look up by domain. This makes integration predictable and reduces mapping overhead in your codebase.

Developer API
Everything available in the Amaya DB interface is also accessible programmatically.
{
"company": {
"id": "cmp_01JAZ8K3M2N4P5Q6",
"name": "Northstar Labs",
"domain": "northstar.dev",
"industry": "Software Development",
"employee_count": 32,
"location": {
"city": "San Francisco",
"country": "United States"
},
"technologies": [
"PostgreSQL",
"Next.js",
"HubSpot"
]
}
}POST /v1/companies/enrich
Integration
Whether you are prototyping an enrichment pipeline or running high-volume syncs, the API is designed for predictable integration.
JSON responses use consistent field names and types across endpoints. No surprises when mapping to your internal models or ORM.
Enrich thousands of domains in a single request. Designed for CRM sync, warehouse pipelines, and product backfills.
Generous rate limits on Growth and Platform tiers. Status page and changelog available for production integrations.
Bearer token authentication on all endpoints. API keys manageable from your account dashboard with scoped permissions.
FAQ