Logstreem
List dashboards
GET

List dashboards

Every dashboard on the organisation.

Element definitions are omitted here; fetch one dashboard to get them.

GET/v1/dashboards

This endpoint takes no parameters.

curl -X GET https://api.logstreem.com/v1/dashboards \
  -H "Authorization: Bearer $LOGSTREEM_TOKEN"

Responses

200OK
{
  "object": "list",
  "data": [
    {
      "object": "dashboard",
      "id": "dsh_4a81e0c3f6a5b2d1e0c9",
      "name": "Service health",
      "datasets": ["api-gateway-prod"],
      "elements": 8,
      "time_range": "1h",
      "created_at": "2026-07-20T11:02:00.000Z"
    }
  ],
  "has_more": false,
  "next_cursor": null
}
401Unauthorized
{
  "error": {
    "type": "authentication_error",
    "code": "missing_token",
    "message": "No API token provided.",
    "doc_url": "https://logstreem.com/docs/errors#missing_token",
    "request_id": "req_9f3c2a7b41de08c5b2e6"
  }
}
Try itsandbox