# Particle Pro – Get Company

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

Retrieves a single company record by slug, domain, or ID, returning structured company data.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id
- Price: $0.01/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-get-company-d9435c1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MwPhqvzvKsD7N7RrNkqxg

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-get-company-d9435c1e
```

Example prompt: Pull up the Particle Pro company profile for Tesla — use the slug 'tesla' to look it up.

## When to prefer this

Use this endpoint when you have a specific company identifier (slug, domain, or ID) and need to retrieve the full structured profile for that single company. Prefer this over the list endpoint when you already know which company you want, as it is faster and more direct. Ideal for CRM enrichment, due diligence, or resolving a known brand to structured data.

## Known failure modes

- Company not found for the given slug, domain, or ID — returns a 404 error
- Invalid or malformed ID/slug/domain format — returns a 400 or validation error
- Payment required or x402 payment failure — request not processed
- Rate limiting or quota exceeded — returns a 429 error
- Network timeout or server error — returns a 5xx response

## How this service works

Get a company. Returns a single company by slug (e.g., 'apple'), domain (e.g., 'apple.com'), or ID.

## Output

Returns a single company object containing structured profile data such as the company's name, slug, domain, description, and associated metadata fields provided by the Particle Pro dataset.

## 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', 'tesla'), domain (e.g., 'apple.com'), or ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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