# BNM Data Shop – FIFRA Enforcement Orders

> BNM Data Shop – FIFRA Enforcement Orders 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 EPA FIFRA enforcement orders and consent agreements as structured JSON, sourced from the EPA administrative database.

## Facts

- Endpoint: GET https://ticks.bnm.farm/fifra-orders
- 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/bnm-data-shop-fifra-enforcement-orders-657503f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wdI4B9SWYY_-0sQ1EAG2K

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 bnm-data-shop-fifra-enforcement-orders-657503f5
```

Example prompt: Pull the latest EPA FIFRA enforcement orders and consent agreements from BNM Data Shop and give me the docket numbers, company names, and dates for each.

## When to prefer this

Use this endpoint when you need machine-readable, pre-fetched EPA FIFRA enforcement orders and consent agreements without scraping the EPA's Yosemite administrative filing system yourself. Prefer it for compliance research, regulatory monitoring pipelines, or legal due diligence workflows that need structured JSON rather than raw PDFs. It is especially useful for agents that need to enrich company profiles with pesticide enforcement history.

## Known failure modes

- HTTP 402 if payment is not provided (unpaid route) — requires x402 micropayment of $0.05 USDC
- Empty records array if no FIFRA orders are currently indexed
- Network timeout if EPA source database is unavailable
- Stale data if the upstream EPA administrative database has not been refreshed recently

## How this service works

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

## Output

Returns a JSON object with an 'ok' status flag, an 'asOf' date, a list of enforcement order cards (each with id, body text, date, docket number, source PDF URL, and institution name), a records array with abbreviated fields, the data source URL, product identifier, record count, and a fetchedAt timestamp.

## 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-07-29",
  "cards": [
   {
    "id": "FIFRA-05-2026-0015",
    "body": "UNITED STATES ENVIRONMENTAL PROTECTION AGENCY\nConsent Agreement and Final Order\nTravel Caddy, Inc. dba Travelon\nFIFRA-05-2026-0015",
    "date": "2026-07-29",
    "docket": "FIFRA-05-2026-0015",
    "sourceUrl": "https://yosemite.epa.gov/OA/RHC/EPAAdmin.nsf/Filings/F4CB3764E5AB61EA85258E43006880DC/$File/FIFRA-05-2026-0015_CAFO_TravelCaddyIncdbaTravelon_FranklinParkIllinois_14PGS.pdf",
    "institution": "Travel Caddy, Inc. dba Travelon"
   }
  ],
  "source": "https://yosemite.epa.gov/oa/rhc/epaadmin.nsf",
  "status": "ok",
  "product": "fifra-institution-order-bodies",
  "records": [
   {
    "id": "FIFRA-05-2026-0015",
    "url": "https://yosemite.epa.gov/OA/RHC/EPAAdmin.nsf/Filings/F4CB3764E5AB61EA85258E43006880DC/$File/FIFRA-05-2026-0015_CAFO_TravelCaddyIncdbaTravelon_FranklinParkIllinois_14PGS.pdf",
    "date": "2026-07-29",
    "firm": "Travel Caddy, Inc. dba Travelon",
    "type": "fifra-order"
   }
  ],
  "fetchedAt": "2026-08-23T12:00:00.000Z",
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bnm-data-shop-fifra-enforcement-orders-657503f5/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)
