Which pipeline operators are in a market, and who are they? Search the PHMSA pipeline oper
Which pipeline operators are in a market, and who are they? Search the PHMSA pipeline operator roster by operator name, operator_id (OPID), HQ state, operator_type, or commodity. Returns the operator, HQ address, commodity, type, and entity-resolved company — the target universe for oil-and-gas services, pipeline-integrity & environmental consultants, energy insurers, and industrial real estate. PHMSA public-domain records.
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": {
"operator": "Kinder Morgan",
"operator_id": "15007",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"commodity": "Natural Gas",
"entity_id": null,
"hq_city": "Houston",
"name": "Example Gas & Electric Co",
"operator_id": "15007",
"operator_type": "Investor Owned",
"report_year": 2025,
"state": "TX"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/phmsa/operators/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"commodity": {
"description": "Commodity fragment.",
"examples": [
"Natural Gas"
],
"type": "string"
},
"entity_id": {
"description": "Resolved operator entity UUID (pivots to business360).",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"operator": {
"description": "Pipeline operator name — suffix/punctuation-insensitive.",
"examples": [
"Kinder Morgan"
],
"type": "string"
},
"operator_id": {
"description": "PHMSA operator id (OPID)(s), CSV.",
"examples": [
"15007"
],
"type": "string"
},
"operator_type": {
"description": "Operator/ownership type fragment.",
"examples": [
"Investor"
],
"type": "string"
},
"sort": {
"description": "operator_name | report_year :asc|:desc. Default operator_name:asc.",
"examples": [
"operator_name:asc"
],
"type": "string"
},
"state": {
"description": "HQ state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/phmsa/operators/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/operators/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/operators/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/14574.json, and this resource appears in /discovery/resources and /discovery/search.