Skip to content
scango.ch
English
Esc
navigateopen⌘Jpreview
On this page

Quickstart

Make your first API request

API key

In the dashboard: Settings → Organization → Keys. Choose Read or Write.

List products

curl -sS \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://dashboard.scango.ch/api/v1/products?limit=5"
{
  "data": [{ "id": "…", "name": "…", "price": 120 }],
  "meta": { "total": 1, "returned": 1, "limit": 5 }
}

Orders

start, end, and paymentState are required:

curl -sS \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://dashboard.scango.ch/api/v1/orders?start=2024-01-01T00:00:00.000Z&end=2024-01-02T00:00:00.000Z&paymentState=successful&limit=100"

Was this page helpful?