Person Events API Playground
Experiment with live requests to find people who appeared in specific events. Only the event field is required - all other filters are optional. Use this to:
- Find all attendees at an event (just provide event name)
- Filter by company to see which employees attended
- Search by role (e.g., CTOs, Founders) or industry
- Combine filters for targeted results
The playground queues asynchronous jobs, polls for status, and displays structured JSON results.
Try the API
Request Parameters
Quick Examples
Click any example to populate the form:
Response
Queue a request to see the complete HTTP request/response details here...
Example Requests
Use these snippets to integrate the Person Events API into your workflow.
All Attendees
Find all attendees at an event
Company-Specific
Filter attendees by company
Company: Google
Role & Industry
Combine multiple filters
Role: Founder
Industry: Health Tech
cURL Examples
Your API credentials are pre-filled. Click "Copy" to copy the command to your clipboard.
curl -X POST https://api.nyne.ai/person/events \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"event": "TechCrunch Disrupt 2024"
}'
curl -X POST https://api.nyne.ai/person/events \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"event": "AWS re:Invent 2024",
"company_name": "Google"
}'
curl -X POST https://api.nyne.ai/person/events \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"event": "YC Demo Day",
"role": "Founder",
"industry": "Health Tech",
"location": "San Francisco"
}'
POST https://example.com/webhooks/person-events
Content-Type: application/json
{
"request_id": "pevents_64f2d8e4_1700000789",
"status": "completed",
"result": {
"query": "Berkeley founders in Health Tech at YC Demo Day",
"people": [
{
"name": "Alex Doe",
"title": "Co-founder",
"company": "HealthPulse",
"linkedin_url": "https://www.linkedin.com/in/alexdoe",
"event": "YC Demo Day Summer 2025"
}
]
},
"created_at": "2025-11-10T22:44:03Z",
"completed_at": "2025-11-10T22:44:35Z"
}
Response Format
Completed polling responses provide a structured list of people and appearances:
Need Help?
Our support team is here to help you integrate and use our APIs effectively.
Email: support@nyne.com
Sales: sales@nyne.ai