Backend Endpoint Refactor

From the 27th of October 2025, in an effort to reduce the size of payloads returned, the /trading-variables endpoint will omit allTrades. Please use the new, already available, endpoints to fetch open trades and a leaner version of trading variables. TLDR:

  • GET /trading-variables partially deprecated

    • Currently returns the allTrades property.

    • allTrades property will be deprecated on 10/27/2025.

  • GET /trading-variables/all new

    • Returns trading variables with an empty allTrades property.

    • Significantly reduces payload size and speeds up request time.

  • GET /open-trades/<?address> new

    • Returns an array of open trades. Trade container types remain the same.

    • Replaces allTrades payload from deprecated /trading-variables endpoint.

    • Optional: provide an address to filter returned trades. Significantly reduces payload size.

      • Important: If provided, address MUST be checksummed.

Last updated

Was this helpful?