# Nordforge JSON Fetch

> Nordforge JSON Fetch is a paid API for AI agents from nordforge-x402.rly.best, paid per call via x402, $0.0001/call, status unknown (last checked 2026-09-14).

Fetches a remote URL and returns its response body parsed as JSON, paid per-call via USDC on Base.

## Facts

- Endpoint: POST https://nordforge-x402.rly.best/v1/json-get
- Price: $0.0001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nordforge-json-fetch-d123f735
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uskKdbDaintNsx3ou7BR4

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 nordforge-json-fetch-d123f735 -d '<json body>'
```

Example prompt: Fetch the JSON data from https://api.example.com/products and give me the parsed result.

## When to prefer this

Use this endpoint when an agent needs to retrieve JSON data from a remote URL in a pay-per-call context without managing HTTP client infrastructure. It is particularly useful for lightweight, occasional fetches of third-party APIs or public data endpoints where setting up a full HTTP client is overkill, and micro-payment billing via USDC on Base is acceptable or preferred.

## Known failure modes

- Target URL is unreachable or times out — returns an error indicating the fetch failed
- Target URL does not return valid JSON — parse failure or raw text returned
- Invalid or malformed URL provided — request rejected with validation error
- Payment failure via x402 — call not executed if USDC payment cannot be processed
- Target URL returns a non-200 HTTP status — error or empty body may be returned

## How this service works

Pay-per-call hashing, encoding, ping, URL→markdown and JSON fetch. USDC on Base via x402.

## Output

The parsed JSON response body returned by the target URL, delivered as a structured object the agent can read and act on.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nordforge-json-fetch-d123f735/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nordforge-x402.rly.best](https://www.zero.xyz/host/nordforge-x402.rly.best/llms.txt)
