Which hazardous-waste handlers operate in a market? Search EPA RCRAInfo (every registered
Which hazardous-waste handlers operate in a market? Search EPA RCRAInfo (every registered hazardous-waste generator, transporter, and treatment/storage/disposal facility) by company, state, city, generator status (LQG/SQG/VSQG), NAICS industry, or handler role (transporter, TSDF, active). Returns the handler (entity-resolved where possible), address, generator status, and role flags — an EHS vendor's entire regulated universe, not just ECHO hits. EPA public-domain records.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-07
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": "Chemours",
"handler_id": "TXD000000000",
"state": "OH"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"active_site": true,
"city": "Cleveland",
"entity_id": null,
"facility_name": "Example Coatings Company",
"fed_waste_generator": "1",
"generator_status": "LQG",
"handler_id": "OHD000000000",
"handler_universe": "LQG, Transporter",
"is_lqg": true,
"is_sqg": false,
"is_transporter": true,
"is_tsdf": false,
"is_vsqg": false,
"latitude": 41.49,
"longitude": -81.69,
"naics_code": "325510",
"state": "OH",
"street": "500 Industrial Parkway",
"zip": "44101"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/epa/rcra-handlers/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"active": {
"description": "true = currently-active handler sites only.",
"examples": [
"true"
],
"type": "string"
},
"city": {
"description": "City fragment.",
"examples": [
"Cleveland"
],
"type": "string"
},
"company": {
"description": "Handler/company name — suffix/punctuation-insensitive.",
"examples": [
"Chemours"
],
"type": "string"
},
"entity_id": {
"description": "Resolved employer entity UUID (pivots to business360).",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"generator_status": {
"description": "LQG | SQG | VSQG | Non-Generator (CSV).",
"examples": [
"LQG"
],
"type": "string"
},
"handler_id": {
"description": "EPA RCRA handler ID(s), CSV.",
"examples": [
"TXD000000000"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"lqg": {
"description": "true = large-quantity generators only.",
"examples": [
"true"
],
"type": "string"
},
"naics": {
"description": "NAICS prefix(es), CSV (e.g. 32 = manufacturing, 3251 = basic chemicals).",
"examples": [
"3251"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"sort": {
"description": "facility_name | generator_status :asc|:desc. Default facility_name:asc.",
"examples": [
"generator_status:asc"
],
"type": "string"
},
"state": {
"description": "State code(s), CSV.",
"examples": [
"OH"
],
"type": "string"
},
"transporter": {
"description": "true = hazardous-waste transporters only.",
"examples": [
"true"
],
"type": "string"
},
"tsdf": {
"description": "true = operating treatment/storage/disposal facilities only.",
"examples": [
"true"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/epa/rcra-handlers/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/epa/rcra-handlers/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/epa/rcra-handlers/search")
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/14589.json, and this resource appears in /discovery/resources and /discovery/search.