Discover matching company candidates from external sources.
Last updated: July 14, 2026
POST /v2/prospect/companies. Send either a freeform search query or structured filters, then use the returned candidates for review, Sanka company creation, or downstream sync to systems such as HubSpot or Salesforce.| API | Endpoint | Input | Output |
|---|---|---|---|
| Company discovery | POST /v2/prospect/companies | Freeform query or structured filters such as industry, location, and headcount | Ranked list of matching company candidates |
/v2 namespace, not /v2/public/....Authorization header. Because this endpoint uses POST, use a key with Full access.Authorization: Bearer <api_key>
Content-Type: application/json
402 Payment Required with a code you can use to notify the workspace admin.curl -X POST "https://api.sanka.com/v2/prospect/companies" \
-H "Authorization: Bearer <api_key>" \
-H "Content-Type: application/json" \
-d '{
"query": "find manufacturing companies in Tokyo with more than 200 employees",
"limit": 10,
"sources": ["exa"]
}'
{
"location": "Tokyo",
"industry": "manufacturing",
"min_employee_count": 200,
"limit": 10
}
POST /v2/public/companies through the Object API.POST /v2/enrich and POST /v2/score.