Welcome to the Aditis API documentation. The Aditis API allows you to programmatically interact with the platform to manage baskets, execute trades, and retrieve market data.
All API requests should be made to:
https://api.aditis.com/v1
Note: The base URL will be finalized when the API is released.
Most API endpoints require authentication. Authentication is handled via:
To obtain an API token, visit your Profile page after logging in.
The following endpoints are planned for the Aditis API:
All API responses will be in JSON format. Successful responses will have a status code of 200, while errors will return appropriate HTTP status codes (400, 401, 403, 404, 500, etc.).
{
"success": true,
"data": {
// Response data here
}
}
{
"error": "Error message describing what went wrong",
"code": "ERROR_CODE"
}
API rate limits will be implemented to ensure fair usage. Specific limits will be documented when the API is released.
Official SDKs for popular programming languages (Python, JavaScript, etc.) are planned for future release.
For questions about the API or to report issues:
API changes and updates will be documented here as they are released.