Limits
The Limits API allows you to keep track of the daily limits for a customer. These limits track trading and transfer activity for a customer.
GET/v1/customers/{customerId}/limits
Get Limits
Use this endpoint to retrieve the daily limits for a customer.
Path Parameters
Parameter | Description | Type | Input |
---|---|---|---|
customerId | Unique ID for the customer | UUID | Required |
Success Response
JSON
200 OK{
"createdAt": "2024-03-02T15:47:46.907Z",
"updatedAt": "2024-03-02T15:47:46.907Z",
"limitsId": "e8519c4b-0e05-43fe-a178-20510e54d70e",
"limitsDate": "2024-03-02T09:47:46.816Z",
"PDT": false,
"dayTradesCount": 0,
"pdtSince": null,
"pdtResetDate": null,
"dayTradesResetDate": null,
"soldSymbolsToday": [],
"boughtSymbolsToday": [],
"activeDayTradeSymbols": [],
"depositsTodayCount": 0,
"depositsTodayAmount": null,
"withdrawalsTodayCount": 0,
"withdrawalsTodayAmount": null
}