DocsAPIPeople

List people

Lists people. Optionally filter by company_id, tags, and is_reporting_contact. Excludes data enrichments shown in the app.

GET
/people
Query Params

Maximum number of results (1-1000, default: 500)

Example: 500

Number of results to skip (default: 0)

Example: 0

Filter by company ID

Example: 42

Filter by tags (comma-separated). Returns people that have any of the given tags.

Example: founder,board

Filter by reporting-contact status

Example: true

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/people?company_id=42&tags=founder%2Cboard&is_reporting_contact=true" \
  -H "Authorization: Bearer <token>"

Successfully retrieved people

{
  "data": [
    {
      "id": "1",
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "company_id": "42",
      "name": "Jane Doe",
      "email": "jane@acme.com",
      "phone": "+1 555 123 4567",
      "title": "Chief Executive Officer",
      "seniority": "C-Level",
      "functions": [
        "CEO"
      ],
      "description": "Serial founder, previously at Acme",
      "country": "United States",
      "city": "San Francisco",
      "avatar_url": "https://example.com/avatar.png",
      "linkedin_url": "https://linkedin.com/in/janedoe",
      "twitter_url": "https://x.com/janedoe",
      "facebook_url": null,
      "github_url": null,
      "cb_url": null,
      "linkedin_org_name": "Acme Inc",
      "tags": [
        "founder"
      ],
      "is_reporting_contact": true,
      "last_seen": "2024-01-15T10:00:00Z",
      "created_at": "2024-01-15T10:00:00Z",
      "updated_at": "2024-02-20T09:00:00Z"
    }
  ],
  "pagination": {
    "total": 200,
    "limit": 500,
    "offset": 0
  }
}