# CFR Legal Text Lookup

> CFR Legal Text Lookup is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches the current text of a Code of Federal Regulations (CFR) section given a citation.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/cfr
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cfr-legal-text-lookup-b62a2f79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RJ2Y599zz2atCAJZDtdhT

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 cfr-legal-text-lookup-b62a2f79
```

Example prompt: Can you pull up the current text of 29 CFR 1910.1200 — the OSHA Hazard Communication standard?

## When to prefer this

Use this endpoint when you need the exact, current official text of a specific Code of Federal Regulations section identified by a known citation (title, part, section). Prefer this over general web search when you need authoritative regulatory language rather than summaries or commentary, and when you already know the CFR citation number.

## Known failure modes

- Invalid or malformed CFR citation returns an error
- Section does not exist or has been removed/reserved returns not found
- Upstream eCFR source unavailable causes fetch failure
- Very recent amendments may not yet be reflected in retrieved text

## How this service works

CFR legal text — Fetch current Code of Federal Regulations text for a citation.

## Output

Returns the current official text of the specified CFR section, including the regulatory language and relevant metadata such as title, part, section number, and effective date information.

## 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"
    }
   },
   "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/cfr-legal-text-lookup-b62a2f79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
