# EPA Air Quality Federal Register Document Detail Lookup

> EPA Air Quality Federal Register Document Detail Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single EPA air quality Federal Register document by entity ID.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-epa-air/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/epa-air-quality-federal-register-document-detail-lookup-9439e2cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u9StKSAIbWv0OJxVLADJL

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 epa-air-quality-federal-register-document-detail-lookup-9439e2cb
```

Example prompt: Can you pull up the full stored details for the EPA air quality Federal Register document with entity ID fedreg:2026-14090?

## When to prefer this

Use this endpoint when you have a specific Federal Register document entity ID (e.g. fedreg:2026-14090) and need full stored detail for that EPA air quality document, rather than searching or listing rules by timestamp. Prefer this over the feed endpoints when you already know which document you want and need its complete record.

## Known failure modes

- Missing or invalid entityId returns an empty or error response
- Entity ID not found in the stored index returns a null entity
- Omitting the id query parameter may return a list of tracked entities rather than a specific document
- Malformed entity ID format (not matching fedreg:XXXX-XXXXX pattern) may yield no results
- Payment required error (402) if x402 payment header is not provided

## How this service works

Full stored detail for a single air quality & emissions rule by Federal Register document ID (e.g. 'fedreg:2026-14090') — title, issuing agency, rule type, effective date, and 1-10 compliance-impact score. Covers air quality, emission, clean air, ozone, particulate.

## Output

Returns the stored entity object containing full details of the specified Federal Register document in the EPA air quality domain, including rule metadata, document type, and regulatory content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/epa-air-quality-federal-register-document-detail-lookup-9439e2cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
