# Clink Forge Self-Test Bulk Product

> Clink Forge Self-Test Bulk Product is a paid API for AI agents from api.clinkforge.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a batch of cryptographically attested data rows with provenance metadata for the forge-selftest-bulk product, sold per-call via x402 micropayment.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/forge-selftest-bulk
- 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/clink-forge-self-test-bulk-product-90355249
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cQh433ZvO7eil_to2EKqn

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-self-test-bulk-product-90355249
```

Example prompt: Fetch a batch of attested data rows from Clink Forge's forge-selftest-bulk product — I need the full provenance chain including license ID, source URL, and Ed25519 signature, paid per-call in USDC.

## When to prefer this

Choose this endpoint when you need bulk data records with cryptographic provenance and attestation included in the response, and you are operating in an x402 micropayment context where per-call USDC settlement is acceptable. Prefer it over unauthenticated data sources when verifiable data lineage and license traceability are required.

## Known failure modes

- 402 Payment Required if x402 payment header is missing or insufficient
- Invalid or expired payment token causes rejection
- Malformed request parameters return 400 Bad Request
- Network timeout if upstream data source is unavailable
- Rate limiting if too many calls in a short period

## 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

A JSON object containing: an array of data rows (each with a payload and record_id), a product descriptor (slug and version), a provenance chain (license_id, source_url, observed_at timestamp), a cryptographic attestation (Ed25519 algorithm and base64 signature), and a payment receipt (settlement_ref transaction hash).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rows": [
   {
    "payload": {
     "field": "value"
    },
    "record_id": "R-100"
   }
  ],
  "product": {
   "slug": "example-product",
   "version": 1
  },
  "provenance": {
   "license_id": "US-GOV-PD",
   "source_url": "https://agency.gov/data",
   "observed_at": "2026-08-25T00:00:00Z"
  },
  "attestation": {
   "algorithm": "Ed25519",
   "signature": "base64..."
  },
  "payment_receipt": {
   "settlement_ref": "0xtx..."
  }
 },
 "description": "data rows + provenance chain + attestation"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-forge-self-test-bulk-product-90355249/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)
