One Trading API
REST APIWebSocket API
REST APIWebSocket API
  1. Futures
  • Public
    • Currencies
      GET
    • Instruments
      GET
    • Candlesticks
      GET
    • Fee Groups
      GET
    • Order Book
      GET
    • Market Ticker
      GET
    • Market Ticker For Instrument
      GET
    • Time
      GET
  • Trading
    • Balances
      GET
    • Fees
      GET
    • Get Orders
      GET
    • Create Order
      POST
    • Get Order by Order ID
      GET
    • Get Order by Client ID
      GET
    • Cancel All Orders
      DELETE
    • Cancel Order by Order ID
      DELETE
    • Cancel Order by Client ID
      DELETE
    • Get Trades for Order
      GET
    • Get Trades
      GET
    • Get Trade by Trade ID
      GET
  • Futures
    • Introduction
    • Funding Rate Methodology
    • Funding Payments
      GET
    • Current Funding Rate
      GET
    • Funding Rate History
      GET
    • Futures Portfolio Summary
      GET
    • Get Futures Open Positions
      GET
  1. Futures

Futures Portfolio Summary

Developing
GET
https://api.onetrading.com/fast/v1/account/futures/summary
This endpoint provides a real-time summary of a user's futures portfolio on the exchange. It returns details about the current portfolio, including the user's account equity, available margin, margin used and positions. The summary is updated with settlements every minute, ensuring users have the most accurate and up-to-date information about their portfolio.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.onetrading.com/fast/v1/account/futures/summary' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "account_id": "c5157711-6d52-4a8c-bbf7-f20d8a3d21ea",
    "equity": "962.78283436",
    "margin_used": "9.156582",
    "margin_available": "953.62625236",
    "account_ratio": "105.23348999023438",
    "maintenance_margin": "16.6353165",
    "positions": [
        {
            "instrument_code": "BTC_EUR_P",
            "direction": "LONG",
            "open_volume": "0.00186",
            "open_position": "149.2689804",
            "last_settlement": "0.0461466",
            "mark_price": "80252.14",
            "realised_pnl": "-0.496713",
            "quote_currency_balance": "962.78283436",
            "settlement_currency": "EUR",
            "last_settlement_timestamp": "2025-03-26T10:00:00.000Z"
        }
    ]
}
Previous
Funding Rate History
Next
Get Futures Open Positions
Built with