Which pipeline operators had a reported incident?
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.govparse.io/v1/phmsa/incidents/search
| Category | Search and research |
|---|---|
| Provider host | api.govparse.io |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.25 | 273 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"mode": "hazardous_liquid",
"operator": "Enbridge",
"operator_id": "15007"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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 \u2014 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"
}