API Authentication
All API requests require a Bearer token in the Authorization header. Personal access tokens are the primary way to authenticate.
Personal access tokens
Generate a personal access token from your personal connections page.
Each token is scoped when you create it:
- Read — read-only access. Can be set to never expire.
- Read + write — read and write access. Must expire within 365 days.
Making authenticated requests
The API is served from:
https://service.steady.space/api/v2/
Include your token in the Authorization header on every request:
Authorization: Bearer your-token-here
For example, to fetch the authenticated person:
$ curl -s https://service.steady.space/api/v2/me -H "Authorization: Bearer $TOKEN"