Skip to main content
GET
/
v2
/
account
/
eod
/
limits
Get EoD limits
curl --request GET \
  --url https://api.example.com/v2/account/eod/limits \
  --header 'Authorization: Bearer <token>'
{
  "limits": [
    {
      "currency": "<string>",
      "d0": "<string>",
      "d1": "<string>",
      "d2": "<string>",
      "usage": {
        "year": 123,
        "month": 123,
        "day": 123,
        "usedD0": "<string>",
        "usedD1": "<string>",
        "usedD2": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subAccountId
string<uuid>

Operate against a sub-account of the authenticated main account.

Response

OK

limits
object[]