# IRS Internal Revenue Bulletin Full Document API

> IRS Internal Revenue Bulletin Full Document API is a paid API for AI agents from irb-precedent-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 IRS Internal Revenue Bulletin document (Revenue Ruling, Revenue Procedure, Notice, Announcement, or Treasury Decision) by document ID, covering 2003 to present.

## Facts

- Endpoint: GET https://irb-precedent-api.canvas-cart.workers.dev/doc/: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/irs-internal-revenue-bulletin-full-document-api-f3ecc093
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GMsDgN1c9ODvEW9sI_p6R

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 irs-internal-revenue-bulletin-full-document-api-f3ecc093
```

Example prompt: Can you pull the complete verbatim text of IRS Revenue Ruling 2003-71 — I need the full official language, not a summary, for my tax research memo.

## When to prefer this

Use this endpoint when you need the complete, authoritative, verbatim text of a specific IRS guidance document for tax research or compliance purposes — not a summary or excerpt. Prefer this over general web search when you need the exact official language of a Revenue Ruling, Revenue Procedure, Notice, Announcement, or Treasury Decision from 2003 onward, especially when the precise wording matters for legal or tax positions.

## Known failure modes

- Invalid or unknown document ID returns an error — ID must first be obtained from GET /search
- Document predating 2003 not available in this dataset
- Malformed document ID format causes lookup failure
- Payment of $0.01 USDC required per call; missing payment results in 402 response

## How this service works

Full text of one IRS Internal Revenue Bulletin document (Revenue Ruling, Revenue Procedure, Notice, Announcement, or Treasury Decision), 2003 to present. Get the id from GET /search?q=<keywords>. Use this when you need the complete, verbatim text of a specific IRS guidance document for tax research, not a summary.

## Output

The complete, verbatim full text of the requested IRS Internal Revenue Bulletin document — Revenue Ruling, Revenue Procedure, Notice, Announcement, or Treasury Decision — as officially published, from 2003 to present. No summarization or truncation; the raw authoritative document text.

## 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": "Document id from GET /search, e.g. td-2003-9091 or rev-rul-2003-71"
      }
     }
    },
    "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/irs-internal-revenue-bulletin-full-document-api-f3ecc093/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from irb-precedent-api.canvas-cart.workers.dev](https://www.zero.xyz/host/irb-precedent-api.canvas-cart.workers.dev/llms.txt)
