# the402.ai Data Extractor

> the402.ai Data Extractor is a paid API for AI agents from api.the402.ai, paid per call via x402, $0.053/call, status down (last checked 2026-09-15).

Purchases and initiates a data extraction job on the402.ai platform, returning a job ID and status for async tracking

## Facts

- Endpoint: POST https://api.the402.ai/v1/services/svc_0efc43dac3354073/purchase
- Price: $0.053/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-the402-ai-61c1417e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qjz2JMduM08qROmhdf1bU

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 api-the402-ai-61c1417e -d '<json body>'
```

Example prompt: Use the402 Data Extractor service (ID svc_0efc43dac3354073) to kick off a data extraction job for me — I need to pull structured information out of this content.

## When to prefer this

Choose this endpoint when you need to asynchronously extract structured data from a document, URL, or unstructured content via the402.ai's paid AI service infrastructure, and you already have the service ID. Prefer it over synchronous alternatives when processing large or complex content that requires background job handling.

## Known failure modes

- Missing or invalid 'id' field returns a 400 validation error
- Service ID not found returns a 404
- Insufficient funds or payment failure returns a 402
- Job initiation failure returns a 500 with no job_id
- Rate limiting may return a 429 if too many requests are made

## How this service works

Purchase: Data Extractor

## Output

Returns a job_id to track the extraction job, a status string indicating the current state (e.g. pending, running, complete), and a thread_id for referencing the async execution thread. Payment of $0.053 USDC is charged per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "thread_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-the402-ai-61c1417e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.the402.ai](https://www.zero.xyz/host/api.the402.ai/llms.txt)
