mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Which meat, poultry, or egg plants operate in a market? Search the USDA FSIS Meat, Poultry

Which meat, poultry, or egg plants operate in a market? Search the USDA FSIS Meat, Poultry & Egg Product Inspection Directory (every federally-inspected establishment) by company, state, city, activity (slaughter/processing), species, size, or inspection-grant date (since, for new plants). Returns the establishment (entity-resolved where possible), address, activities, and size — a food-safety seller's entire target universe, not just OSHA-hit plants. FSIS public-domain records.

Do you run api.govparse.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated

Provider

api.govparse.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1250000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "1250000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "company": "Tyson",
          "establishment_number": "M12345",
          "state": "IA"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "rows": [
            {
              "activities": "Meat Slaughter; Meat Processing; Poultry Processing",
              "city": "Springdale",
              "county": "Washington County",
              "dbas": null,
              "entity_id": null,
              "establishment_name": "Example Provisions Company",
              "establishment_number": "M12345",
              "grant_date": "2011-06-14",
              "is_egg": false,
              "is_import": false,
              "is_meat": true,
              "is_poultry": true,
              "is_processing": true,
              "is_slaughter": true,
              "latitude": 36.18,
              "longitude": -94.13,
              "phone": "(479) 555-0100",
              "size": "Large",
              "state": "AR",
              "street": "100 Packing House Road",
              "zip": "72762"
            }
          ],
          "total_matched": 1
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/fsis/establishments/search",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "properties": {
            "activity": {
              "description": "Activity fragment (Slaughter, Processing, Egg Product, ...).",
              "examples": [
                "Slaughter"
              ],
              "type": "string"
            },
            "city": {
              "description": "City fragment.",
              "examples": [
                "Springdale"
              ],
              "type": "string"
            },
            "company": {
              "description": "Establishment/company name — suffix/punctuation-insensitive.",
              "examples": [
                "Tyson"
              ],
              "type": "string"
            },
            "entity_id": {
              "description": "Resolved employer entity UUID (pivots to business360).",
              "examples": [
                "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
              ],
              "type": "string"
            },
            "establishment_number": {
              "description": "FSIS establishment number(s), CSV (M=meat, P=poultry, G=egg, I=import).",
              "examples": [
                "M12345"
              ],
              "type": "string"
            },
            "limit": {
              "description": "Max rows (default 25, cap 100).",
              "examples": [
                25
              ],
              "type": "integer"
            },
            "offset": {
              "description": "Rows to skip.",
              "examples": [
                0
              ],
              "type": "integer"
            },
            "processing": {
              "description": "true = processing establishments only.",
              "examples": [
                "true"
              ],
              "type": "string"
            },
            "since": {
              "description": "Inspection grant date on/after this date (YYYY-MM-DD) — surfaces newly-granted plants.",
              "examples": [
                "2026-01-01"
              ],
              "type": "string"
            },
            "size": {
              "description": "Very Small | Small | Large (CSV).",
              "examples": [
                "Large"
              ],
              "type": "string"
            },
            "slaughter": {
              "description": "true = slaughter establishments only.",
              "examples": [
                "true"
              ],
              "type": "string"
            },
            "sort": {
              "description": "grant_date | establishment_name :asc|:desc. Default grant_date:desc.",
              "examples": [
                "grant_date:desc"
              ],
              "type": "string"
            },
            "species": {
              "description": "meat | poultry | egg (CSV).",
              "examples": [
                "poultry"
              ],
              "type": "string"
            },
            "state": {
              "description": "State code(s), CSV.",
              "examples": [
                "IA"
              ],
              "type": "string"
            }
          },
          "required": [],
          "type": "object"
        }
      },
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.govparse.io/v1/fsis/establishments/search"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.govparse.io/v1/fsis/establishments/search");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.govparse.io/v1/fsis/establishments/search")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14576.json, and this resource appears in /discovery/resources and /discovery/search.