API Credentials
|
Company Employees API Playground
Queue live requests, poll for completion, and inspect the exact JSON returned by the Company Employees API. This playground follows the same async workflow your production integration will use.
Request Builder
Response Viewer
Loading request builder...
Or Check Existing Request
Paste a request ID from a previous request to check its status.
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/employees \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"domain": "acme.com",
"max_employees": 25
}'
POST https://example.com/webhook/company-employees
Content-Type: application/json
{
"request_id": "94f1bf8a0d1a1f065a9b4e7fbc3df6aabbb6d828ce64fe780a5496f43b61fc73",
"status": "completed",
"completed": true,
"completed_on": "2026-04-20T21:15:19Z",
"success": true,
"data": {
"domain": "acme.com",
"max_employees": 25,
"page": 1,
"limit": 25,
"total_results": 2,
"results": [
{
"displayname": "Jane Doe",
"location": "San Francisco, California, United States",
"organizations": [
{
"name": "Acme",
"is_current": true
}
]
}
]
}
}
Response Format
Completed responses return a request status wrapper plus a results array of limited employee result objects.
{
"success": true,
"data": {
"request_id": "94f1bf8a0d1a1f065a9b4e7fbc3df6aabbb6d828ce64fe780a5496f43b61fc73",
"status": "completed",
"domain": "acme.com",
"max_employees": 25,
"total_results": 1,
"results": [
{
"displayname": "Jane Doe",
"location": "San Francisco, California, United States",
"organizations": [
{
"name": "Acme",
"is_current": true
}
]
}
]
},
"timestamp": "2026-04-20T21:15:19Z"
}