# PHMSA Pipeline Operator Search

> PHMSA Pipeline Operator Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search the PHMSA pipeline operator roster by name, OPID, HQ state, operator type, or commodity to find who operates pipelines in a given market

## Facts

- Endpoint: GET https://api.govparse.io/v1/phmsa/operators/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phmsa-pipeline-operator-search-a85f5bdc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2edBETSPMLWEvNKQPkxOe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability phmsa-pipeline-operator-search-a85f5bdc
```

Example prompt: Pull the PHMSA pipeline operator roster for all natural gas operators headquartered in Texas — show me up to 50 results sorted by operator name, including their HQ address and commodity.

## When to prefer this

Use this endpoint when you need to identify, enumerate, or look up pipeline operators from the official PHMSA federal registry — especially for market research, sales prospecting, environmental compliance checks, insurance underwriting, or regulatory due diligence in the oil-and-gas sector. Prefer this over general web search when you need structured, entity-resolved records with OPID linkage and HQ data.

## Known failure modes

- No results returned when operator name spelling differs significantly from PHMSA records — try partial names or OPID instead
- State filter must be a valid two-letter US state code; invalid codes return empty results
- Limit cap of 100 rows per call; larger datasets require multiple paginated requests
- Entity UUID may be null for operators not yet resolved in the business entity graph
- Stale records possible if PHMSA has not updated the underlying public dataset recently

## How this service works

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.

## Output

Returns a list of matching pipeline operator records from the PHMSA registry, each including the operator name, PHMSA operator ID (OPID), HQ address, commodity type, operator/ownership type, and an entity-resolved company UUID that links to broader business data. Supports pagination and sorting.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "sort": {
     "type": "string",
     "examples": [
      "operator_name:asc"
     ],
     "description": "operator_name | report_year :asc|:desc. Default operator_name:asc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX"
     ],
     "description": "HQ state code(s), CSV."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "operator": {
     "type": "string",
     "examples": [
      "Kinder Morgan"
     ],
     "description": "Pipeline operator name — suffix/punctuation-insensitive."
    },
    "commodity": {
     "type": "string",
     "examples": [
      "Natural Gas"
     ],
     "description": "Commodity fragment."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved operator entity UUID (pivots to business360)."
    },
    "operator_id": {
     "type": "string",
     "examples": [
      "15007"
     ],
     "description": "PHMSA operator id (OPID)(s), CSV."
    },
    "operator_type": {
     "type": "string",
     "examples": [
      "Investor"
     ],
     "description": "Operator/ownership type fragment."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phmsa-pipeline-operator-search-a85f5bdc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
