Skip to main content
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

EndpointMethodDescription
Profile360GETEnrich data for a person based on their email address
Profile360 SearchPOSTRetrieve a paginated list of enriched profiles with journey data and engagement history
Account360GETRetrieve comprehensive account intelligence for a company by domain
Account360 SearchPOSTSearch and filter accounts by firmographic, engagement, and intent criteria
Company SearchPOSTDiscover and filter companies based on firmographic criteria
Company EnrichmentGETEnrich firmographic data for a single company by domain or email
Company LogoGETFetch a company logo URL by domain
People SearchPOSTFind professionals working at a specific company

Authentication

All API requests require an x-api-key header. Create your key in Access Keys.

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.