# 402.com.tr Market Snapshot (Demo)

> 402.com.tr Market Snapshot (Demo) is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns deterministic pseudo-prices for top assets to test the x402 wire format — not live market data.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/market-snapshot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-market-snapshot-demo-46ebacc3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r4gBBlOjieHRiJVMkPsD3

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 402-com-tr-market-snapshot-demo-46ebacc3
```

Example prompt: Give me a demo market snapshot from 402.com.tr to test whether my x402 payment wire format is working correctly — I just need deterministic fake prices, not real market data.

## When to prefer this

Choose this endpoint when you want the cheapest possible x402 paid call to test your payment pipeline or wire format integration. It is ideal for smoke testing, CI/CD validation, and confirming that your x402 client can handle a paid response. Do not use it when you need real market prices — use token-price or token-momentum endpoints for live data.

## Known failure modes

- Payment not included or malformed x402 header — returns 402 Payment Required
- Network timeout or server unavailability — returns 5xx error
- Malformed request format — returns 400 Bad Request

## How this service works

DEMO/synthetic endpoint: returns deterministic pseudo-prices for top assets to test the x402 wire format. NOT live market data — use token-price / token-momentum for real prices.

## Output

A deterministic, synthetic market snapshot containing pseudo-prices for top assets, formatted according to the x402 wire format. The data is not live or real — it is designed to help developers verify their x402 client integration is functioning correctly.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-market-snapshot-demo-46ebacc3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
