# Particle Pro – List Company People

> Particle Pro – List Company People is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a paginated list of people (executives and other roles) associated with a company, filterable by role class and title substring, with current roles shown first.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id/people
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/particle-pro-list-company-people-cb76f05e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EHnOqBJvQYiY8Yxw1HjKU

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability particle-pro-list-company-people-cb76f05e
```

Example prompt: Pull a list of current executives and marketing contacts at Apple — use the slug 'apple' and filter by the 'executive' role class, returning up to 20 results.

## When to prefer this

Use this endpoint when you need structured, role-classified people data for a specific company — especially for B2B outreach, competitive intelligence, or leadership mapping. It is superior to generic web search when you need filterable, paginated, role-typed contact records (e.g., filtering to just 'marketing' or 'executive' roles). Prefer it over manual LinkedIn scraping or generic contact enrichment APIs when you have a company slug, domain, or Particle Pro ID and want clean, classified role data.

## Known failure modes

- Company not found for given slug, domain, or ID — returns 404
- Invalid role enum value — returns 400 validation error
- Invalid pagination cursor — returns 400 or empty results
- Rate limit exceeded — returns 429
- Payment required or insufficient funds — returns 402

## How this service works

List company people. Returns a paginated list of people associated with a company (executives and other known roles), current roles first and most-recently-joined first.

## Output

A paginated list of people objects associated with the specified company, each including name, role title, role class, and current/historical status. Current roles appear first, most recently joined first. Includes an opaque cursor for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Company slug (e.g., 'apple'), domain (e.g., 'apple.com'), or ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "role": {
       "enum": [
        "marketing",
        "brand",
        "partnerships",
        "media_advertising",
        "communications",
        "growth",
        "executive",
        "other"
       ],
       "type": "string",
       "description": "Only people whose role title falls in this contact role class: current roles by default, historical roles too when current_only=false. The classes are the ones a podcast pitching sponsorship would reach (marketing, partnerships, brand, media and advertising, communications, growth, executive); other is a title that matches none of them. Combines with title."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "title": {
       "type": "string",
       "description": "Case-insensitive substring filter on role title (e.g. 'chief', 'founder')."
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "current_only": {
       "type": "boolean",
       "description": "When true (default), only people currently in a role at the company. Set false to include historical roles."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-company-people-cb76f05e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.particle.pro](https://www.zero.xyz/host/api.particle.pro/llms.txt)
