For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Join CommunityStart Trading
HomeOverviewDIME UtilityTradingRisk & LiquidationsVTFsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
HomeOverviewDIME UtilityTradingRisk & LiquidationsVTFsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
  • General Information
    • Server Location
    • Server URLs
    • Quick Start
    • Authentication
    • Rate Limits
    • Benchmarks
    • API Authentication
    • API Best Practices
  • Production API Reference
        • GETGet market bbo
        • GETGet market bbo including all orders including RPI (as seen by the UI)
        • GETFunding data history
        • GETList available markets
        • GETHistory of changes to market specifications
        • GETOHLCV for a symbol
        • GETSettlement price for a single market
        • GETList available markets summary
        • GETGet market orderbook
        • GETGet market impact price
        • GETGet market interactive orderbook
  • Testnet API Reference
  • Useful Resources
    • Paradex Github
    • Paradex CLI
    • Code Samples
    • Python SDK
    • CCXT Integration
Join CommunityStart Trading
Production API ReferenceMarkets

Settlement price for a single market

GET
https://api.prod.paradex.trade/v1/markets/settlement-price
GET
/v1/markets/settlement-price
$curl -G https://api.prod.paradex.trade/v1/markets/settlement-price \
> -H "Authorization: <apiKey>" \
> -d market=market
1{
2 "expiry_at": 1758326400000,
3 "settlement_price": "5000",
4 "symbol": "BTC-USD-15SEP25-55000-C",
5 "underlying_twap_price": "60000"
6}

Returns the settlement price and the underlying spot TWAP used to compute it. The market must have already settled; otherwise returns 404.

Was this page helpful?
Previous

List available markets summary

Next
Built with

Query parameters

marketstringRequired

Market symbol, e.g. BTC-USD-15SEP25-55000-C

Response

OK
expiry_atinteger

Scheduled expiry (unix ms); settlement is computed at or shortly after this time

settlement_pricestring

Option payoff for option markets; spot TWAP for perp/future

symbolstring
underlying_twap_pricestring

30-min spot TWAP at expiry

Errors

404
Not Found Error