# Clink Forge eCFR Title Status

> Clink Forge eCFR Title Status is a paid API for AI agents from api.clinkforge.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves the current status of a specific eCFR (Electronic Code of Federal Regulations) title, with cryptographic provenance and attestation, sold per-call via x402 micropayment.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/ecfr-title-status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-forge-ecfr-title-status-3dfde6d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UU0yh3pwTRiLXbq3gtNqF

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 clink-forge-ecfr-title-status-3dfde6d3
```

Example prompt: Can you look up the current status of eCFR title 21 and show me the provenance details confirming where the data came from?

## When to prefer this

Choose this endpoint when you need eCFR title status data with cryptographic provenance and attestation for compliance, legal, or audit purposes — especially in automated pipelines where machine-verifiable sourcing matters. Prefer it over scraping or unauthenticated data sources when you need a signed, timestamped proof of where the data originated. Best suited for agents that can handle x402 micropayments per call and need lightweight, per-query access without a subscription.

## Known failure modes

- Missing or invalid 'id' query parameter returns a validation error
- ID string exceeding 8 characters is rejected by schema
- Payment failure via x402 protocol results in 402 Payment Required response
- Unknown or non-existent eCFR title ID may return empty rows or a 404
- Network or upstream government data source unavailability causes service errors

## How this service works

Pay per call over x402. USDC on Base, no account, no API key. 28 government-sourced data products at $0.001–$0.05 per call, every response signed and provenance-chained.

## Output

Returns a JSON object containing one or more data rows with the eCFR title status payload and record IDs, a product metadata block (slug and version), a provenance record including license ID, source URL, and observation timestamp, a cryptographic attestation (Ed25519 signature), and a payment receipt with a blockchain settlement reference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "maxLength": 8
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "field": "value",
    "_record_id": "R-100"
   }
  ],
  "product": "example-product",
  "row_count": 1,
  "provenance": [
   {
    "hash": "sha256...",
    "authority": "AGENCY",
    "source_url": "https://agency.gov/data",
    "observed_at": "2026-08-25T00:00:00Z"
   }
  ],
  "attestation": {
   "signature": "base64...",
   "result_digest": "sha256...",
   "signing_key_id": "forge-signing-1"
  },
  "payment_receipt": {
   "amount_usd": 0.01,
   "settlement_ref": "0xtx..."
  },
  "product_version": 1
 },
 "description": "data rows + provenance chain + attestation"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-forge-ecfr-title-status-3dfde6d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.clinkforge.com](https://www.zero.xyz/host/api.clinkforge.com/llms.txt)
