# CriptoNous x402 — Temple Catalog Endpoint

> CriptoNous x402 — Temple Catalog Endpoint is a paid API for AI agents from cripto-app-v1-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the available catalog of crypto market intelligence signal types (whale flow, smart money, sentiment, oracle signals) available via pay-per-query on Solana USDC.

## Facts

- Endpoint: GET https://cripto-app-v1-production.up.railway.app/x402/resource/temple.catalog
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-x402-temple-catalog-endpoint-9e057ffc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EvLyz3myBoVG2ehGFRHqU

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 criptonous-x402-temple-catalog-endpoint-9e057ffc
```

Example prompt: Can you pull up the CriptoNous temple catalog to show me what whale flow, smart money, and oracle signal products are available — maybe filter it for SOL if that's supported?

## When to prefer this

Use this endpoint as a discovery/catalog step before querying specific CriptoNous intelligence signals. It is the right starting point when you don't yet know which SKUs or signal types are available, or when you want to enumerate offerings for SOL/BTC before committing to per-query payments on specific data products.

## Known failure modes

- Payment not processed — returns 402 if USDC payment via x402 protocol was not completed
- Invalid or unsupported token symbol query param — may return empty results or error
- Service downtime on Railway deployment — returns 5xx errors
- Malformed request method — only GET/HEAD/DELETE accepted

## How this service works

CriptoNous x402 — pay-per-query crypto market intelligence on Solana USDC: whale flow, smart money, sentiment, oracle signals. NFA — analysis only.

## Output

Returns a JSON object confirming payment success, the SKU identifier ('temple.catalog'), a pass ID, a receipt ID, and an NFA disclaimer flag. The payload describes the available catalog of market intelligence data products offered by the service.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Optional token symbol (e.g. SOL, BTC)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "nfa": true,
  "sku": "temple.catalog",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-x402-temple-catalog-endpoint-9e057ffc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cripto-app-v1-production.up.railway.app](https://www.zero.xyz/host/cripto-app-v1-production.up.railway.app/llms.txt)
