https://api.tradespace.io/
All API requests require authentication using an API key. Include the API key in the Authorization
header of your request.
The following headers are required for all requests:
All responses will be in JSON format. The main data will be contained within the "data" key. For list endpoints, a "meta" key will contain pagination details.
For endpoints that return multiple items, use the following query parameters to control pagination:
{
"data": [
/* items */
],
"meta": {
"offset": 0,
"count": 100,
"page_size": 100,
"total_count": null,
"current_page": 1,
"prev_page": null,
"next_page": 2
}
}