# FDA IOM Full Section Text API

> FDA IOM Full Section Text API is a paid API for AI agents from fda-iom-api.canvas-cart.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the complete, verbatim text of a specific section from the FDA Investigations Operations Manual (IOM) by section ID.

## Facts

- Endpoint: GET https://fda-iom-api.canvas-cart.workers.dev/section/:id/full
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-iom-full-section-text-api-8edd7370
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OY9ZsoBK-_I53B4dO7wf4

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 fda-iom-full-section-text-api-8edd7370
```

Example prompt: Can you pull up the complete, verbatim text of FDA IOM section chapter-05--5-1-1 so I can review the exact inspection guidance before our facility audit?

## When to prefer this

Use this endpoint when you need the exact, verbatim regulatory text of a specific FDA IOM section — particularly for compliance documentation, legal citation, audit preparation, or inspection readiness where summaries are insufficient and precision matters. Prefer this over search endpoints after you already have the section ID, and over summary-based tools when the full official language is required.

## Known failure modes

- Invalid or unknown section ID returns a 404 or error response
- Section ID formatted incorrectly (e.g. missing hyphens) causes lookup failure
- Network or worker timeout on large section text
- Payment not processed (402) if x402 protocol not handled correctly

## How this service works

Full text of one section of the FDA Investigations Operations Manual (IOM). Get the id from GET /search?q=<keywords> or GET /chapter/:id. Use this when you need the complete, verbatim text of a specific IOM section for inspection-readiness or regulatory research, not a summary.

## Output

The complete, unabridged verbatim text of the specified FDA Investigations Operations Manual section, including all subsections, procedural guidance, and regulatory language exactly as published in the official IOM document.

## 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": "Section id from GET /search or GET /chapter/:id, e.g. chapter-05--5-1-1"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-iom-full-section-text-api-8edd7370/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fda-iom-api.canvas-cart.workers.dev](https://www.zero.xyz/host/fda-iom-api.canvas-cart.workers.dev/llms.txt)
