Documentation

Explore our guides and examples to integrate Qualy.

curl 'https://api.qualyhq.com/v1/payment-intents/create'
-H 'x-tenant-id: eu1-hxxonyxppzqqvypuekggjoxz'
-H 'Authorization: ApiKey pk_prod_eyJhbGciOiJIUzI1NiJ9'
-H 'Content-Type: application/json'
-d '{"currency":"AUD","items":[{"name":"Tuition fee","amount":150000}],"contact":"64e3414d340d81bbc61b4004"}'

Introduction

Getting started

Use the Qualy API to build an integration that can handle complex payment flows and can track a payment from creation through checkout.

Get your API keys

Step-by-step guides to setting up your system and installing the library.

Set up webhooks

Learn how the internals work and contribute.

The Qualy API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, and verbs (only GET and POST are used).

The Qualy API doesn't support bulk updates. You can work on only one object per request.


Errors

Qualy uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a charge failed, etc.). Codes in the 5xx range indicate an error with Qualy’s servers.

To learn more about how Qualy handles errors, check this article.

Versioning

Qualy's API is versioned, to support future backwards-incompatible changes. Currently, our API version is v1.

API Reference

For the full API Reference for Qualy's v1 API, check this page.