# Futures Product Universe Lookup

> Futures Product Universe Lookup is a paid API for AI agents from marketdata.use.x402atlas.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns the full catalog of futures products including product codes, names, exchanges, sectors, asset classes, and settlement details.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/futures-products
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/futures-product-universe-lookup-8329c52d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ngmEf9R2N18E6ocdJhZhI

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 futures-product-universe-lookup-8329c52d
```

Example prompt: Can you pull up all commodity futures products available on CME — I need the product codes, names, and settlement details for the energy sector specifically.

## When to prefer this

Use this endpoint when you need to discover or enumerate available futures contracts — especially when filtering by asset class, sector, or exchange. Prefer this over options or equity endpoints when the user is specifically asking about futures products, codes, or contract specifications.

## Known failure modes

- Invalid asset_class value returns empty or error response
- Unknown trading_venue MIC returns no results
- Limit parameter out of bounds may return error or be capped
- Service unavailable or payment failure returns 402/5xx

## How this service works

Futures product universe — product codes, names, exchanges, sectors, asset classes and settlement details.

## Output

A paginated list of futures contracts with product codes, human-readable names, exchange identifiers (MIC), sector classifications, asset class labels (e.g. commodity, equity, interest_rate), and settlement details for each product.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50000,
       "minimum": 1,
       "description": "Max results returned"
      },
      "product_code": {
       "type": "string",
       "description": "Product identifier, e.g. ES, CL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "count",
      "results"
     ],
     "properties": {
      "count": {
       "type": "integer",
       "description": "Number of products returned."
      },
      "results": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Futures product specs, passed through from upstream."
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "UTC timestamp when this bridge queried the upstream."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "date": "2026-07-17",
    "name": "E-mini S&P 500 Futures",
    "type": "single",
    "sector": "us_index",
    "asset_class": "financials",
    "product_code": "ES",
    "trading_venue": "XCME",
    "asset_sub_class": "equity",
    "settlement_method": "financially_settled",
    "settlement_currency_code": "USD"
   }
  ],
  "queried_at": "2026-07-06T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/futures-product-universe-lookup-8329c52d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marketdata.use.x402atlas.com](https://www.zero.xyz/host/marketdata.use.x402atlas.com/llms.txt)
