What does the full RCRAInfo hazardous-waste handler roster look like, handler by handler?
What does the full RCRAInfo hazardous-waste handler roster look like, handler by handler? Bulk feed over EPA RCRAInfo in handler-id order: facility, city, state, generator status, roles (LQG/SQG/VSQG/transporter/TSDF), and NAICS — a large-quantity generator or TSDF is an EHS-services / environmental-consulting target. Flat rows, cursor-paginated up to 1000/page, filterable by state, generator status, NAICS, or LQG/TSDF/transporter flags. A standing roster (no per-record registration date).
25000000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-11
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": "25000000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "25000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"generator_status": "LQG",
"naics": "324",
"state": "AK"
},
"type": "http"
},
"output": {
"example": {
"basis": "EPA RCRAInfo hazardous-waste handler roster in handler_id order — the standing regulated universe (no per-record registration date). Observational public records as recorded.",
"feed": "rcra-handlers",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJrIjoiQUswMDAwMzg0MDQwIn0",
"returned": 500
},
"query": {
"active": true,
"generator_status": "all",
"lqg": true,
"naics": "all",
"state": [
"AK"
],
"transporter": "any",
"tsdf": "any"
},
"rows": [
{
"active_site": true,
"as_published_date": "2026-07-18",
"city": "VALDEZ",
"entity_id": "63c9af51-c291-487e-9b5e-0bbf33a6a2a2",
"event_key": "rcra:AK0000384040",
"facility": "PETRO STAR VALDEZ REFINERY",
"generator_status": "LQG",
"handler_id": "AK0000384040",
"handler_universe": "LQG",
"is_lqg": true,
"is_transporter": false,
"is_tsdf": false,
"naics": "32411",
"roles": [
"LQG"
],
"state": "AK",
"street": "MILE 2.5 DAYVILLE ROAD",
"zip": "99686"
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/rcra-handlers",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"active": {
"description": "false = include inactive handler sites (default: active only).",
"examples": [
"true"
],
"type": "string"
},
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJrIjoiQUswMDAwMzg0MDQwIn0"
],
"type": "string"
},
"generator_status": {
"description": "Generator status(es), CSV: LQG | SQG | VSQG | Non-Generator.",
"examples": [
"LQG"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"lqg": {
"description": "true = large-quantity generators only.",
"examples": [
"true"
],
"type": "string"
},
"naics": {
"description": "NAICS code prefix(es), CSV.",
"examples": [
"324"
],
"type": "string"
},
"state": {
"description": "State code(s), CSV.",
"examples": [
"AK"
],
"type": "string"
},
"transporter": {
"description": "true = hazardous-waste transporters only.",
"examples": [
"true"
],
"type": "string"
},
"tsdf": {
"description": "true = treatment/storage/disposal facilities only.",
"examples": [
"true"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/feeds/rcra-handlers" # -> 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/feeds/rcra-handlers");
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/feeds/rcra-handlers")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14561.json, and this resource appears in /discovery/resources and /discovery/search.