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

Funding Payments

Developing
GET
https://api.onetrading.com/fast/v1/account/futures/funding-payments
Returns a paginated list of funding payments, grouped by instrument code and sorted in descending order by timestamp. If no instrument code is provided, funding payments are fetched for all markets.
Default Behavior for from and to parameters
Parameters ProvidedBehavior
Neither from nor toReturns last 7 days from UTC midnight to current time
Only fromReturns 7 days starting from the provided from date
Only toReturns 7 days ending at the provided to date (starting from UTC midnight 7 days prior)
Both from and toReturns funding payments within the specified date range (max 90 days)

Request

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

Responses

🟢200OK
application/json
Body

🟠403Forbidden
🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.onetrading.com/fast/v1/account/futures/funding-payments?from=2025-01-15T10:30:00Z&to=2025-01-16T10:30:00Z&instrument_code=BTC_EUR_P&cursor=1754395201021329&max_page_size=100' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - With Cursor
{
    "account_id": "abc12345-6789-abcd-efgh-ijklmnopqrst",
    "funding_payments": {
        "ETH_EUR_P": [
            {
                "timestamp": "2025-08-05T12:00:16.011Z",
                "funding_payment": 0.1727217,
                "cash_balance": 9380.49600963
            }
        ],
        "BTC_EUR_P": [
            {
                "timestamp": "2025-08-05T12:00:01.021Z",
                "funding_payment": -0.02739235,
                "cash_balance": 9383.89391196
            }
        ]
    },
    "max_page_size": 2,
    "cursor": "1754395201021329"
}
Previous
Funding Rate Methodology
Next
Current Funding Rate
Built with