# Federal Register Fisheries Rule Detail Lookup

> Federal Register Fisheries Rule 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 Federal Register document in the fisheries regulatory domain by entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-fisheries/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/federal-register-fisheries-rule-detail-lookup-3a029cec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xqu15I0sut-FP8o2Yb-nJ

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 federal-register-fisheries-rule-detail-lookup-3a029cec
```

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

## When to prefer this

Use this endpoint when you have a specific Federal Register fisheries document entityId (e.g. fedreg:2026-14090) and need its full stored detail. Prefer this over the list/feed endpoints when you already know the document ID and want deep detail on a single record rather than a set of recent rules.

## Known failure modes

- Missing or invalid entityId returns an error or empty result
- entityId not in the fisheries domain returns no result
- Non-existent entityId returns a not-found response
- Omitting the id query parameter may return a list of tracked entities instead of a specific document
- Payment failure (x402) blocks access if 0.01 USDC is not provided

## How this service works

Full stored detail for a single fisheries & marine resources 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 fishery, fishing, marine, catch limit, endangered.

## Output

Returns a stored entity object containing the full detail of a single Federal Register document in the fisheries domain, including rule metadata, text, and regulatory context, keyed by entityId.

## 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/federal-register-fisheries-rule-detail-lookup-3a029cec/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)
