Skip to main content

Start here

Create an access token and attach it to the Authorization header to make your first request.

Create a token

  1. Open Developers → API in Sanka.
  2. Click Create Token and choose the permission.
  3. Save the Access Token / Refresh Token somewhere secure (shown once).

Send your first request

Try fetching orders:
curl -X GET "https://api.sanka.com/v1/public/orders?page=1&limit=50" \
  -H "Authorization: Bearer <access_token>"
Notes:
  • There is no sandbox, so use a workspace with test data.
  • Keep your token in a secure store.

Confirm the response

If the response includes data, you’re good to go. Common issues:
  • 401: token missing/expired
  • 403: token permission is Regular (GET-only)
  • 429: too many requests, retry later
Next, review authentication and the API reference.