# TickerLayer Commodities Symbol Catalog

> TickerLayer Commodities Symbol Catalog is a paid API for AI agents from x402.tickerlayer.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the full catalog of tradable commodity symbols available on TickerLayer, each in MARKET:SYMBOL format.

## Facts

- Endpoint: GET https://x402.tickerlayer.com/v1/commodities/symbols
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickerlayer-commodities-symbol-catalog-8b23fec5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gth7IpP7uN7pYNShsRItl

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 tickerlayer-commodities-symbol-catalog-8b23fec5
```

Example prompt: Can you pull up the full list of commodity symbols available on TickerLayer so I know which tickers I can use for pricing queries?

## When to prefer this

Use this endpoint when you need to enumerate all available commodity symbols on TickerLayer before making downstream price or market-status queries. Prefer this over the stocks, ETF, forex, crypto, or indices symbol endpoints when your domain of interest is physical or futures-based commodities (e.g. gold, oil, natural gas, agricultural goods).

## Known failure modes

- Payment failure (402): x402 micropayment of $0.02 USDC not completed or rejected
- Network timeout if TickerLayer catalog endpoint is temporarily unavailable
- Empty or malformed symbol list if catalog is being updated
- Authentication/payment header missing, resulting in 402 response

## How this service works

Discover the current TickerLayer Commodities symbol catalog. Stock symbols are market-qualified in COUNTRY_OR_MARKET:SYMBOL form such as US:AAPL.

## Output

An array of commodity ticker objects, each containing a market-qualified symbol (e.g. 'US:GC' or 'COMEX:CL') and a human-readable name. The list represents the full universe of commodities available on the TickerLayer platform.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "symbol",
         "name"
        ],
        "properties": {
         "name": {
          "type": "string"
         },
         "symbol": {
          "type": "string",
          "pattern": "^[A-Za-z0-9][A-Za-z0-9.:%-]*$",
          "maxLength": 80,
          "minLength": 1
         }
        },
        "additionalProperties": true
       },
       "minItems": 1
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickerlayer-commodities-symbol-catalog-8b23fec5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tickerlayer.com](https://www.zero.xyz/host/x402.tickerlayer.com/llms.txt)
