# CriptoNous x402 — Temple Catalog Endpoint

> CriptoNous x402 — Temple Catalog Endpoint is a paid API for AI agents from app.criptonous.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the catalog of available crypto market intelligence SKUs (whale flow, smart money, sentiment, oracle signals) for a given token symbol, paid per-query via x402 on Solana USDC.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/temple.catalog
- 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/criptonous-x402-temple-catalog-endpoint-62a671aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8KY9YWcfmHiIYTRg9B1lC

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-62a671aa
```

Example prompt: Show me what crypto market intelligence products CriptoNous has available for SOL — I want to see the full catalog of whale flow, smart money, and sentiment signals I can buy.

## When to prefer this

Choose this endpoint when you need to discover which specific crypto market intelligence products CriptoNous offers before making targeted data queries, or when building a menu-driven agent that lets users select from available whale flow, smart money, sentiment, or oracle signal products. Prefer this over direct data endpoints when you don't yet know which SKU to request. Ideal for agents operating in DeFi or crypto trading contexts that need to enumerate purchasable intelligence modules on a pay-per-query Solana USDC basis.

## Known failure modes

- Payment failure: x402 payment not processed or insufficient USDC balance — returns 402 Payment Required
- Invalid symbol: unrecognized token symbol returns empty catalog or error
- Network/service unavailability: upstream service down returns 5xx error
- Malformed request: missing required 'type' or 'method' fields returns 400 Bad Request

## 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 (paid: true), the SKU identifier ('temple.catalog'), a pass ID, a receipt ID, an NFA disclaimer flag, and an 'ok' status. The catalog payload lists available crypto market intelligence products (whale flow, smart money, sentiment, oracle signals) optionally filtered by token symbol.

## 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-62a671aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.criptonous.com](https://www.zero.xyz/host/app.criptonous.com/llms.txt)
