# Futures Contract Discovery & Specifications

> Futures Contract Discovery & Specifications 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 a list of futures contracts with their tickers, trade dates, maturity, settlement details, and tick sizes, filterable by product code, ticker, or active status.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/futures-contracts
- 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-contract-discovery-specifications-b230c563
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HzyjMdaEFRSgBQ8WpRU7I

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-contract-discovery-specifications-b230c563
```

Example prompt: Show me all currently active futures contracts for the ES product — I need the tickers, maturity dates, and tick sizes.

## When to prefer this

Use this endpoint when you need to discover available futures contracts or retrieve contract specifications (tick size, settlement, maturity) for a known or unknown product code. Prefer this over options or stock endpoints when the asset class is specifically futures.

## Known failure modes

- Unknown product_code returns empty results or 404
- Invalid ticker format returns error or empty list
- limit exceeding 1000 is clamped or rejected
- Payment not processed results in 402 response
- Missing required query params may return all contracts up to default limit of 100

## How this service works

Futures contract discovery and specifications — tickers, trade dates, maturity, settlement and tick sizes by product code.

## Output

A list of futures contract records, each containing the contract ticker, product code, trade dates, maturity/expiration date, settlement type and price, and tick size specifications. Supports up to 1000 results per call.

## 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"
      }
     }
    }
   },
   "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 contracts returned."
      },
      "results": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Futures contract 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": [
   {
    "name": "E-mini S&P 500 Future",
    "active": true,
    "ticker": "ESU5",
    "product_code": "ES",
    "last_trade_date": "2025-09-19",
    "settlement_date": "2025-09-19",
    "days_to_maturity": 138,
    "first_trade_date": "2024-09-20"
   }
  ],
  "queried_at": "2026-07-06T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/futures-contract-discovery-specifications-b230c563/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)
