Authentication
All API requests require authentication using an API key.
Getting Your API Key
- Log in to your MultiSave dashboard
- Navigate to API Keys section
- Click Create New Key
- Copy your API key and store it securely
Important: Keep your API key secure. Do not expose it in client-side code or public repositories.
Using Your API Key
Include your API key in the x-api-key header with every request.
Example
bash
curl -X GET "https://api.multisave.uz/call/v1/your-endpoint" \
-H "x-api-key: your-api-key-here"Authentication Errors
| Status Code | Description |
|---|---|
401 | API key is missing or invalid |
403 | API key does not have permission for this endpoint |
402 | Insufficient balance in your wallet |