Skip to main content

Welcome to Qwoty API

1

Log in to Qwoty

Visit qwoty.app and sign in to your account
2

Navigate to Developer Settings

Go to SettingsDeveloperAPI Tokens
3

Generate a New Token

Click Create API Token and give it a descriptive name
4

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://qwoty.app/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://qwoty.app/api/payment-terms', {
  headers: {
    Authorization: 'Bearer qwoty_your_api_token_here',
  },
})

const data = await response.json()
console.log(data)

Next Steps

Quickstart

Get your API key and make your first request in minutes

Authentication

Learn how to authenticate your API requests

API Reference

Explore all available API resources and endpoints

Support

Need help? Our team is here to assist you

API Features

Our API follows REST principles with predictable resource-oriented URLs, accepts JSON-encoded request bodies, and returns JSON-encoded responses.
Clear error messages with appropriate HTTP status codes help you quickly identify and resolve issues.
All API operations are scoped to your workspace, ensuring data security and isolation.

Base URL

All API requests should be made to:
https://qwoty.app/api

Need Help?

Email Support

Dashboard

Access your Qwoty dashboard