> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List stations

> List stations

### Responses

<ResponseField name="200" type="StationResponse[]" />

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.stateset.com/api/v1/print-stations' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "string",
      "last_seen_at": null,
      "name": "string",
      "printers": [
        "string"
      ],
      "revoked": true
    }
  ]
  ```
</ResponseExample>
