Skip to main content

API Overview

The Qashier API provides a comprehensive set of endpoints to integrate with our platform.

Base URL

https://api.qashier.com/v1

Authentication

All API requests require authentication using API keys. Include your API key in the header:

Authorization: Bearer YOUR_API_KEY

Rate Limits

  • 1000 requests per minute per API key
  • 10,000 requests per hour per API key

Response Format

All responses are returned in JSON format with the following structure:

{
"success": true,
"data": {},
"message": "Success",
"timestamp": "2024-01-01T00:00:00Z"
}

Error Handling

Error responses follow the same structure:

{
"success": false,
"error": {
"code": "INVALID_REQUEST",
"message": "The request is invalid"
},
"timestamp": "2024-01-01T00:00:00Z"
}
Was this page helpful?