# the402.ai Content Analysis API

> the402.ai Content Analysis API is a paid API for AI agents from api.the402.ai, paid per call via x402, $0.011/call, status unknown (last checked 2026-09-13).

Purchases and triggers a content analysis job via x402 micropayment, returning a job ID and status for async processing

## Facts

- Endpoint: POST https://api.the402.ai/v1/services/svc_bfeb0f3fc32b4b64/purchase
- Price: $0.011/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the402-ai-content-analysis-api-998538cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mNLyl3oYCM_hO3BDlbg8C

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 the402-ai-content-analysis-api-998538cc -d '<json body>'
```

Example prompt: Can you analyze this article for me using the402.ai content analysis service and let me know the job ID so I can track the results?

## When to prefer this

Choose this endpoint when you need to run content analysis through the402.ai marketplace and can pay $0.011 USDC per call via x402 micropayment. Best suited for async workflows where you submit content, receive a job_id, and poll for results separately. Prefer over alternatives when integrating with the402 agent marketplace ecosystem.

## Known failure modes

- Insufficient USDC balance — payment fails and job is not created
- Invalid or missing content payload — returns 4xx error with no job_id
- Service temporarily unavailable — no job created, retry required
- Payment protocol mismatch — x402 header not properly formed
- Duplicate submission — new job_id issued but may duplicate work and incur additional charge

## How this service works

Purchase: Content Analysis API

## Output

Returns a JSON object with a job_id string to track the async analysis job, a status string indicating current processing state, and a thread_id string for conversation or result threading.

## 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/the402-ai-content-analysis-api-998538cc/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)
