# Clink Forge Station Monthly Temperature

> Clink Forge Station Monthly Temperature 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-13).

Returns government-sourced monthly temperature data for a weather station, signed with cryptographic provenance, paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/station-monthly-temp
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-forge-station-monthly-temperature-f6accc5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h6_2puEUottNyZ3NE5rPb

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-station-monthly-temperature-f6accc5f
```

Example prompt: Pull the monthly temperature records for weather station USC00010008 from January 2020 to December 2022 — I need the data with its cryptographic provenance so I can verify it came from an official government source.

## When to prefer this

Choose this endpoint when you need government-sourced monthly temperature data for a specific weather station with cryptographic provenance and attestation — particularly when data integrity verification, audit trails, or citation of official sources is required. Prefer this over generic weather APIs when the authenticity and chain-of-custody of the data must be machine-verifiable, and when you want pay-per-call access without API key registration.

## Known failure modes

- Payment failure or insufficient USDC balance returns 402 Payment Required
- Invalid or unknown station entity ID returns empty data array or 400 error
- Date range outside available data returns empty rows
- Malformed start/end date strings exceeding 12 characters return validation error
- Network timeout for government data source returns 503 or delayed response

## 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 monthly temperature data rows keyed by record ID, the product name and version, a provenance chain including SHA-256 hash, source government URL, observing authority, and observation timestamp, a cryptographic attestation with signature and result digest, and a payment receipt showing USDC amount and on-chain 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": [],
     "properties": {
      "end": {
       "type": "string",
       "maxLength": 12
      },
      "start": {
       "type": "string",
       "maxLength": 12
      },
      "entity": {
       "type": "string",
       "maxLength": 24
      }
     },
     "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-station-monthly-temperature-f6accc5f/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)
