# Clink Forge FMR Area Search

> Clink Forge FMR Area Search 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-15).

Search Fair Market Rent (FMR) area data from government sources, returned with cryptographic provenance and attestation, paid per-call via x402 USDC.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/fmr-area-search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-forge-fmr-area-search-275aa1f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b4gDQJ6pRGYYnrjsHn75V

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-fmr-area-search-275aa1f4
```

Example prompt: Search for Fair Market Rent areas matching 'Austin' using Clink Forge — I need the government-sourced area records with their provenance and attestation so I can verify the data is authentic.

## When to prefer this

Choose this endpoint when you need government-sourced Fair Market Rent area data that must be verifiably authentic — especially for compliance, auditing, or housing policy workflows where cryptographic provenance matters. Prefer this over scraping HUD directly or using unverified databases when you need a signed attestation chain proving data origin. Ideal for AI agents that can pay micro-amounts via x402 and need no account setup or API key management.

## Known failure modes

- Payment failure if insufficient USDC balance or x402 settlement fails
- No results returned if search query does not match any FMR area names
- Query string exceeding 80 characters rejected
- Invalid or missing 'q' parameter returns validation error
- Network timeout if Base blockchain settlement is delayed

## 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 an array of FMR area data rows matching the search query, each with a record ID and government-sourced field values. The response also includes a provenance chain (source URL, agency authority, hash, observation timestamp), a cryptographic attestation (signature, result digest, signing key ID), and a payment receipt confirming the $0.01 USDC transaction. Row count and product version are included.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 80
      }
     },
     "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-fmr-area-search-275aa1f4/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)
