Which pipeline operators had a reported incident? Search PHMSA pipeline incidents (2010+,
Which pipeline operators had a reported incident? Search PHMSA pipeline incidents (2010+, gas distribution / hazardous liquid / gas transmission) by operator, operator_id, mode, state, cause, commodity, minimum cost (min_cost), year, or incident date (since). Returns the incident, its entity-resolved operator, location, commodity released, casualties, cost, and cause — a remediation / integrity / claims trigger. Reported exactly as recorded, not a safety judgment.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
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": {
"mode": "hazardous_liquid",
"operator": "Enbridge",
"operator_id": "15007"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"cause": "CORROSION FAILURE",
"city": "Midland",
"commodity_released": "CRUDE OIL",
"county": "MIDLAND",
"entity_id": null,
"fatalities": 0,
"incident_date": "2025-03-14",
"incident_id": "hazardous_liquid:20250123",
"incident_year": 2025,
"injuries": 0,
"mode": "hazardous_liquid",
"name": "Example Pipeline Partners LP",
"operator_id": "31618",
"property_damage": 250000,
"report_number": "20250123",
"state": "TX",
"total_cost": 1250000
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/phmsa/incidents/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"cause": {
"description": "Incident cause fragment.",
"examples": [
"CORROSION"
],
"type": "string"
},
"commodity": {
"description": "Commodity released fragment.",
"examples": [
"CRUDE OIL"
],
"type": "string"
},
"entity_id": {
"description": "Resolved operator entity UUID.",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"min_cost": {
"description": "Minimum total cost (USD).",
"examples": [
"1000000"
],
"type": "string"
},
"mode": {
"description": "Pipeline mode (gas_distribution | hazardous_liquid | gas_transmission), CSV.",
"examples": [
"hazardous_liquid"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"operator": {
"description": "Operator name — suffix/punctuation-insensitive.",
"examples": [
"Enbridge"
],
"type": "string"
},
"operator_id": {
"description": "PHMSA operator id(s), CSV.",
"examples": [
"15007"
],
"type": "string"
},
"since": {
"description": "Incident date on/after this date (YYYY-MM-DD).",
"examples": [
"2025-01-01"
],
"type": "string"
},
"sort": {
"description": "incident_date | total_cost | fatalities :asc|:desc. Default incident_date:desc.",
"examples": [
"total_cost:desc"
],
"type": "string"
},
"state": {
"description": "Incident state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
},
"year": {
"description": "Incident year.",
"examples": [
"2025"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/phmsa/incidents/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/phmsa/incidents/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/phmsa/incidents/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/14573.json, and this resource appears in /discovery/resources and /discovery/search.