Skip to main content
GET
/
api
/
v1
/
positions
/
summary
Positions summary
curl --request GET \
  --url https://api.example.com/api/v1/positions/summary \
  --header 'X-API-Key: <api-key>'
{
  "totalOrders": 123,
  "fixtureCount": 123,
  "exchangeCount": 123,
  "totalStake": 123,
  "totalMatched": 123,
  "totalOpen": 123,
  "filledCount": 123,
  "cancelledCount": 123,
  "openCount": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.55-tech.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Client API key (UUID format). Get your key from the admin dashboard.

Query Parameters

fromDate
string<date> | null

Filter from orders created on or after this date (YYYY-MM-DD)

toDate
string<date> | null

Filter from orders created on or before this date (YYYY-MM-DD)

Response

Successful Response

Summary of order statistics for a client.

totalOrders
integer
required

Total number of orders

fixtureCount
integer
required

Number of unique fixtures

exchangeCount
integer
required

Number of unique exchanges

totalStake
number
required

Sum of all order stakes

totalMatched
number
required

Sum of all matched stakes

totalOpen
number
required

Sum of open (unmatched) stakes

filledCount
integer
required

Number of filled orders

cancelledCount
integer
required

Number of cancelled orders

openCount
integer
required

Number of open orders