# Particle Pro – List Company Competitors

> Particle Pro – List Company Competitors 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, prominence-ranked list of competitors for a given company, ordered by news coverage volume, market cap, podcast appearances, and Wikidata notability.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id/competitors
- 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-competitors-8e4ae114
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZwQNOzJVeqmybVAUsw3Ai

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-competitors-8e4ae114
```

Example prompt: Can you pull up a ranked list of Apple's top competitors — ranked by how much news coverage and market prominence they have? Use 'apple' as the company ID and show me the top 10.

## When to prefer this

Choose this endpoint when you need a ranked, multi-signal competitive landscape for a specific company — particularly when prominence ordering (news coverage + market cap + podcast + Wikidata) matters more than a raw alphabetical or category-only list. Prefer it over generic web searches when you need structured, paginated competitor data tied to a specific company identifier.

## Known failure modes

- Unknown company slug or domain returns a 404 or empty competitors list
- Invalid cursor value causes a pagination error
- Rate limiting or payment failure (x402) blocks the request
- Company with very low profile may return few or no competitors
- Malformed 'id' path parameter results in a 400 bad request

## How this service works

List company competitors. Returns a paginated list of competitors for a company, ordered by prominence (news coverage volume, market cap, podcast appearances, Wikidata notability) so the largest / most-newsworthy competitors come first.

## Output

A paginated list of competitor companies for the specified company, each ordered by a composite prominence score derived from news coverage volume, market capitalization, podcast appearances, and Wikidata notability. The response includes an opaque pagination 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": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-company-competitors-8e4ae114/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)
