Funding and settlement

REST

https://api.sandbox.x.architect.co

Get Mtm Prices

post
Body
symbolstring · min: 1 · max: 20Required

Symbol to get mark-to-market price for

Pattern: ^[-A-Z0-9]+$
start_timestring · date-timeRequired

Start time

end_timestring · date-timeRequired

End time

Responses
200

Successful Response

application/json
post
POST /settlement/get_mtm_prices HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 95

{
  "symbol": "text",
  "start_time": "2025-09-27T21:22:45.202Z",
  "end_time": "2025-09-27T21:22:45.202Z"
}
[
  {
    "timestamp": "2025-09-27T21:22:45.202Z",
    "symbol": "text",
    "mtm_price": "text"
  }
]

Get Funding Rates

post
Body
symbolstring · min: 1 · max: 20Required

Symbol to get funding rate for

Pattern: ^[-A-Z0-9]+$
start_timestring · date-timeRequired

Start time

end_timestring · date-timeRequired

End time

Responses
200

Successful Response

application/json
post
POST /settlement/get_funding_rates HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 95

{
  "symbol": "text",
  "start_time": "2025-09-27T21:22:45.202Z",
  "end_time": "2025-09-27T21:22:45.202Z"
}
[
  {
    "timestamp": "2025-09-27T21:22:45.202Z",
    "symbol": "text",
    "benchmark_price": "text",
    "settlement_price": "text",
    "funding_amount": "text",
    "funding_rate": "text"
  }
]

Last updated