API Credentials |

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

Filter attendees by company
Event name (required)
Filter by job role or title
Filter by industry
Filter by location
URL to receive results asynchronously

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

Event: TechCrunch Disrupt 2024

Company-Specific

Filter attendees by company

Event: AWS re:Invent 2024
Company: Google

Role & Industry

Combine multiple filters

Event: YC Demo Day
Role: Founder
Industry: Health Tech

cURL Examples

Your API credentials are pre-filled. Click "Copy" to copy the command to your clipboard.

Example 1: All attendees at an event
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"
  }'
Example 2: Company-specific attendees
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"
  }'
Example 3: Role and industry filters
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"
  }'
Webhook Payload
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:

{ "success": true, "data": { "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" } ], "summary_window_days": 180 }, "created_on": "2025-11-10T22:44:03Z", "completed_on": "2025-11-10T22:44:35Z" }, "timestamp": "2025-11-10T22:44:35Z" }

Need Help?

Our support team is here to help you integrate and use our APIs effectively.

Email: support@nyne.com

Sales: sales@nyne.ai