Store your API key securely - you’ll need to include it in the header of all API requests
Copy
# Example of including your API key in requestscurl -H "X-API-KEY: your_api_key_here" https://api.glider.fi/v1/...
3
API Response Format
All Glider API responses follow a consistent format:
Copy
{ "success": true, // or false for errors "data": { // Response data varies by endpoint }, "correlationId": "corr_abcd1234", // For request tracking "requestId": "req_efgh5678", // For request tracking "timestamp": "2023-05-21T12:34:56.789Z" // ISO timestamp}
Error responses include additional error information: