Get Your API Key
Navigate to Developer Settings
Go to Settings → Developer → API Tokens
Generate a New Token
Click Create API Token and give it a descriptive name
Save Your Token
Copy and securely store your API token. It starts with qwoty_Your API token will only be shown once. Store it securely!
Make Your First Request
Let’s retrieve your payment terms using cURL:
curl https://app.qwoty.io/api/payment-terms \
-H "Authorization: Bearer qwoty_your_api_token_here"
Replace qwoty_your_api_token_here with your actual API token
Example Response
{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Net 30",
"api_name": "net_30",
"is_active": true,
"installments": [
{
"name": "Full Payment",
"percentage": 100,
"term": "net30",
"order_number": 1
}
]
}
]
}
Using Different Languages
const response = await fetch('https://app.qwoty.io/api/payment-terms', {
headers: {
Authorization: 'Bearer qwoty_your_api_token_here',
},
})
const data = await response.json()
console.log(data)
Next Steps