Version: 1.0.0
Sona Labs API Reference
The Sona API gives you programmatic access to account intelligence, people data, and company enrichment. Use it to enrich profiles, identify high-intent accounts, search for companies and contacts, and integrate Sona's data into your own applications.
Base URL
https://api2.sonalabs.com
Available endpoints
| Endpoint | Method | Description |
|---|---|---|
| Profile360 | GET | Enrich data for a person based on their email address |
| Profile360 Search | POST | Retrieve a paginated list of enriched profiles with journey data and engagement history |
| Account360 | GET | Retrieve comprehensive account intelligence for a company by domain |
| Account360 Search | POST | Search and filter accounts by firmographic, engagement, and intent criteria |
| Company Search | POST | Discover and filter companies based on firmographic criteria |
| Company Enrichment | GET | Enrich firmographic data for a single company by domain or email |
| Company Logo | GET | Fetch a company logo URL by domain |
| People Search | POST | Find professionals working at a specific company |
Quick links
- Authentication — How to create and use API keys
- Rate Limits — Credit-based usage and request limits
- Status Codes & Errors — Error handling reference
- API Pricing — Credit costs per endpoint
Authentication
All API requests require an x-api-key header. Create your key in Access Keys.
- API Key: x-api-key
API key for authentication
| Security Scheme Type: | apiKey |
|---|---|
| Header parameter name: | x-api-key |
Example request
curl --request GET \
--url "https://api2.sonalabs.com/resource/profile360/[email protected]" \
--header "x-api-key: your-api-key-here" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response format
All responses follow a consistent structure:
{
"version": "2.0.0",
"status": "success",
"data": {
// Endpoint-specific data
}
}
For errors, the data object contains a message field with details:
{
"version": "2.0.0",
"status": "error",
"data": {
"message": "Error description"
}
}
info
All API calls consume credits under your Sona pricing plan. Check your usage at Billing Overview.