Skip to main content

Getting Started

This guide will help you get started with integrating Qashier's APIs into your application.

Prerequisites

  • A Qashier developer account
  • API key (obtainable from the developer dashboard)
  • Basic knowledge of REST APIs

Step 1: Obtain API Credentials

  1. Log in to your Qashier developer dashboard
  2. Navigate to API Keys section
  3. Generate a new API key
  4. Securely store your API key

Step 2: Make Your First API Call

Here's an example of making a basic API call:

curl -X GET "https://api.qashier.com/v1/health" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"

Step 3: Handle the Response

A successful response will look like:

{
"success": true,
"data": {
"status": "healthy",
"version": "1.0.0"
},
"message": "API is running",
"timestamp": "2024-01-01T00:00:00Z"
}

Next Steps

  • Explore the API Reference
  • Check out code examples for your preferred programming language
  • Join our developer community for support
Was this page helpful?