# Chiro x402 — Chiropractic Knowledge Retrieval

> Chiro x402 — Chiropractic Knowledge Retrieval is a paid API for AI agents from api.chiro-x402.org, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Retrieves a specific chiropractic training video transcript by video ID, returning structured content from a 500K+ segment corpus of chiropractic knowledge, paid via x402 micropayment protocol.

## Facts

- Endpoint: GET https://api.chiro-x402.org/transcript/%7Bvideo_id%7D
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chiro-x402-chiropractic-knowledge-retrieval-afcebb21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3-1WE8gl3tWlwedRrC2Iu

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 chiro-x402-chiropractic-knowledge-retrieval-afcebb21
```

Example prompt: Pull the transcript for chiropractic video '1. Tour of the Website' from the Chiro x402 knowledge base — it's in the New Member Onboarding section and I need the full text content.

## When to prefer this

Choose this endpoint when you need to retrieve the full text of a specific chiropractic training video transcript by its known video ID. It is best suited for agents that have already identified a target video ID (e.g. from a prior search or index) and need the raw transcript content. It is not a search endpoint — use it for direct document retrieval, not discovery across the corpus.

## Known failure modes

- Invalid or unknown video_id returns no matching transcript
- Payment failure via x402 protocol results in 402 response and no content delivered
- Malformed video_id string may cause lookup failure
- Network or Base mainnet payment confirmation delay may cause timeout
- Transcript file not found for valid-looking IDs that don't exist in corpus

## How this service works

Paid AI-agent endpoint for searching 500K+ segments of general chiropractic knowledge. $0.05 USDC per query on Base mainnet. No API keys, no accounts — agents pay via x402 v2 protocol and receive structured results.

**Corpus:** Clinical protocols, wellness plans, marketing strategies, patient communication, practice management — sourced from general chiropractic training.

## Output

Returns a structured object containing the video transcript text, the video ID, file size in bytes, the transcript file path within the corpus (indicating category and module), and payment confirmation details including token type, amount, and network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "payment": {
   "type": "object"
  },
  "video_id": {
   "type": "string"
  },
  "file_size": {
   "type": "integer"
  },
  "transcript": {
   "type": "string"
  },
  "transcript_path": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "payment": {
   "token": "USDC",
   "amount": "$0.50",
   "network": "base"
  },
  "video_id": "1. Tour of the Website",
  "file_size": 26467,
  "transcript": "Welcome to general...",
  "transcript_path": "1. New-Member-Onboarding/6. Finish-ONBOARDING/videos/1. Tour of the Website.txt"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chiro-x402-chiropractic-knowledge-retrieval-afcebb21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.chiro-x402.org](https://www.zero.xyz/host/api.chiro-x402.org/llms.txt)
