Skip to main content
GET
/
suppliers
List suppliers
curl --request GET \
  --url https://dashboard.scango.ch/api/v1/suppliers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "sup_01",
      "name": "Example supplier",
      "description": ""
    }
  ],
  "meta": {
    "total": 1,
    "returned": 1,
    "limit": 100
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.scango.ch/llms.txt

Use this file to discover all available pages before exploring further.

Use optional limit (1–5000, default 100) to cap how many suppliers are returned. The response meta includes total, returned, and limit. See Introduction.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:100

Maximum number of suppliers to return. Integer 1–5000. Default 100.

Required range: 1 <= x <= 5000

Response

200 - application/json

List of suppliers with meta.

data
object[]
required
meta
object
required

Included on every list response. returned is the length of data. For Firestore-backed lists (/products without q, /orders, /suppliers, /categories), total equals returned for that response (the API does not return a separate full match count). For product search with q, total is the search index’s estimated number of matching documents. limit is the applied page size (query default 100, maximum 5000; search with q caps the effective page size at 250). offset is only used for product search with q.