# the402.ai Analysis Report Purchase

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

Purchases and initiates an AI-generated analysis report job on the the402.ai platform, returning a job ID for status tracking

## Facts

- Endpoint: POST https://api.the402.ai/v1/services/svc_7acac05a3e5d44c4/purchase
- Price: $0.105/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-89c59c4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iRl6GiRwT3mgvZ4lgCuAg

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-89c59c4b -d '<json body>'
```

Example prompt: Can you purchase an analysis report on the402.ai for service ID 'svc_abc123' and give me the job ID so I can track it?

## When to prefer this

Use this endpoint when you need to asynchronously generate an AI analysis report on the the402.ai platform and are prepared to pay $0.105 USDC per call via the x402 micropayment protocol. Prefer this over sentiment analysis or style guide endpoints when you need a general-purpose analysis report rather than a specific type of output.

## Known failure modes

- Missing or invalid 'id' field returns a 400 validation error
- Insufficient USDC balance or payment failure results in a 402 Payment Required error
- Unknown service ID returns a 404 not found error
- Server-side job creation failure returns a 500 error
- Network timeout during payment processing may result in an ambiguous state where payment was taken but no job_id is returned

## How this service works

Purchase: Analysis Report

## Output

Returns a job_id string to track the async analysis job, a status string indicating the current state of the job, and a thread_id string for accessing conversation or result details related to this job.

## 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-89c59c4b/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)
