# fittings CFR Section Text

> fittings CFR Section Text is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Retrieves the current authoritative plain-text content of a specific Code of Federal Regulations (CFR) section, including its heading and citation.

## Facts

- Endpoint: GET https://fittings.sh/v1/cfr/section-text
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-cfr-section-text-a2fa22b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MZbbQZH7_aqD1UCXUq7J5

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 fittings-cfr-section-text-a2fa22b7
```

Example prompt: Can you pull up the current text of CFR Title 29, section 1910.95 — the OSHA noise exposure standard?

## When to prefer this

Choose this endpoint when you need the exact, authoritative plain-text wording of a specific CFR section for compliance, legal research, or regulatory reference — especially when you already know the CFR title and section number. It is more targeted than a full-text regulatory search and provides citation-ready output. Prefer it over general web search when precision and official sourcing matter.

## Known failure modes

- Invalid or non-existent title/section number returns an error or empty result
- Requesting a future date or a date before the section existed may return no data
- Malformed section number format (e.g. missing decimal) may cause lookup failure
- Section numbers that have been removed or reserved may not return content
- Rate limiting or payment failure (x402) if USDC balance is insufficient

## How this service works

The current authoritative text of a Code of Federal Regulations section, as plain text with its heading and citation.

## Output

Plain-text content of the specified CFR section, including the section heading and official citation. Reflects the latest published version unless a specific issue date is requested.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "title",
      "section"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Optional YYYY-MM-DD issue date. Defaults to the latest."
      },
      "title": {
       "type": "number",
       "description": "CFR title number, 1-50"
      },
      "section": {
       "type": "string",
       "description": "Section number, e.g. 1910.95 or 240.10b-5"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-cfr-section-text-a2fa22b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
