Skip to main content
GET
/
api
/
v1
/
market
/
account-ratio
Get Long Short Ratio
curl --request GET \
  --url https://api.ekiden.fi/api/v1/market/account-ratio
{
  "list": [
    {
      "buy_ratio": "<string>",
      "sell_ratio": "<string>",
      "symbol": "BTCUSDC",
      "timestamp": "1672531200000"
    }
  ],
  "next_page_cursor": "<string>"
}

Query Parameters

symbol
string
required
Example:

"BTCUSDC"

start_time
string<date-time> | null
end_time
string<date-time> | null
limit
integer<int32> | null
Required range: x >= 0
cursor
string | null

Cursor. Use the next_page_cursor token from the response to retrieve the next page of the data set

Response

200 - application/json

Long short ratio data

This refers to the net long and short positions as percentages of all position holders during the selected time.

list
object[]
required
next_page_cursor
string
required