API Credentials
|
Use this playground to queue real searches, poll for results, and inspect strict JSON responses. Authentication is required for all requests.
Request Builder
Response Viewer
Send a request to see the complete HTTP request/response details here...
Example Requests
Your API credentials are pre-filled. Click "Copy" to copy the command to your clipboard.
cURL Example
curl -X POST https://api.nyne.ai/company/search \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"industry": "SaaS",
"website_keyword": "SOC 2",
"location": "San Francisco",
"max_results": 20,
"validate_keyword": true
}'
POST https://example.com/webhook/company-search
Content-Type: application/json
{
"request_id": "cosearch_cb6e93e4",
"status": "completed",
"results": [
{
"name": "Acme SaaS",
"url": "https://acmesaas.com",
"keyword_verified": true
}
]
}
Response Format
Company search responses follow a strict JSON schema ensuring predictable integration.
{
"success": true,
"data": {
"request_id": "cosearch_cb6e93e4",
"status": "completed",
"created_on": "2025-11-11T00:12:03Z",
"completed_on": "2025-11-11T00:12:24Z",
"results": [
{
"name": "Acme SaaS",
"url": "https://acmesaas.com",
"keyword_verified": true,
"industry": "SaaS",
"location": "San Francisco"
}
],
"callback_url": null
},
"timestamp": "2025-11-11T00:12:24Z"
}
Try EZ Tool for a simpler, no-code interface.