# TTB Offer-in-Compromise Cases (BNM Data Shop)

> TTB Offer-in-Compromise Cases (BNM Data Shop) is a paid API for AI agents from ticks.bnm.farm, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a list of TTB (Alcohol and Tobacco Tax and Trade Bureau) administrative offer-in-compromise cases as structured JSON, sourced from official TTB public records.

## Facts

- Endpoint: GET https://ticks.bnm.farm/ttb-oic
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ttb-offer-in-compromise-cases-bnm-data-shop-fe5513cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yi5R7zsoxILyQfJPuMRaZ

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 ttb-offer-in-compromise-cases-bnm-data-shop-fe5513cf
```

Example prompt: Can you pull the latest TTB offer-in-compromise cases from BNM Data Shop and show me the list of institutions involved, their docket IDs, and settlement dates?

## When to prefer this

Choose this endpoint when you need machine-readable, structured JSON access to TTB offer-in-compromise administrative case data without scraping the TTB website yourself. It is ideal for compliance monitoring, legal due diligence, or regulatory research workflows that need current OIC records with docket IDs, institution names, and links to source PDFs — especially in agent pipelines that can handle x402 micropayments automatically.

## Known failure modes

- HTTP 402 Payment Required if no valid x402 payment is attached
- Empty or stale records if TTB source page is temporarily unavailable
- Network timeout if BNM Data Shop backend is slow fetching upstream TTB data
- Malformed response if TTB changes their source page structure

## How this service works

Official public data as JSON. Unpaid paid routes return HTTP 402.

## Output

A JSON object containing an 'ok' status, an 'asOf' date, a 'cards' array with case abstracts (id, body text, date, docket, source PDF URL, institution name), a 'records' array with structured fields (id, url, date, firm, type), a 'fetchedAt' timestamp, a 'recordCount', and metadata fields including source URL and product name.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "schema": {
     "type": "object"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "asOf": "2026-06-30",
  "cards": [
   {
    "id": "21st-amendment",
    "body": "DEPARTMENT OF THE TREASURY\nALCOHOL AND TOBACCO TAX AND TRADE BUREAU\nABSTRACT AND STATEMENT\nThe 21st Amendment Brewery Cafe, LLC\nOffer-in-Compromise",
    "date": "2026-06-30",
    "docket": "21st-amendment",
    "sourceUrl": "https://www.ttb.gov/system/files/2026-07/ABSTMT-21st_Amendment_Brewery_Cafe_Redacted.pdf",
    "institution": "The 21st Amendment Brewery Cafe, LLC"
   }
  ],
  "source": "https://www.ttb.gov/business-central/fo/administrative-cases",
  "status": "ok",
  "product": "ttb-institution-oic-bodies",
  "records": [
   {
    "id": "21st-amendment",
    "url": "https://www.ttb.gov/system/files/2026-07/ABSTMT-21st_Amendment_Brewery_Cafe_Redacted.pdf",
    "date": "2026-06-30",
    "firm": "The 21st Amendment Brewery Cafe, LLC",
    "type": "ttb-oic"
   }
  ],
  "fetchedAt": "2026-08-23T12:00:00.000Z",
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ttb-offer-in-compromise-cases-bnm-data-shop-fe5513cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ticks.bnm.farm](https://www.zero.xyz/host/ticks.bnm.farm/llms.txt)
