Back to Integrations
API Integration Guide
Build a custom integration with the Sales Centri REST API.
Authentication
All API requests require a Bearer token. Create an API key in your workspace settings and send it as Authorization: Bearer <token>.
Base URL
Use https://salescentri.com/api/v1 for production REST calls. All payloads are JSON.
Typical flow
Most custom integrations follow ingest → enrich → export:
- POST /api/v1/contacts/ingest to send contacts
- Poll job status or subscribe to webhooks
- GET /api/v1/contacts/export to retrieve enhanced records
Need help implementing this?