Skip to content

Check whether the current bearer token is valid

GET
/v1/authenticated
curl --request GET \
--url https://api.aetherpush.com/v1/authenticated \
--header 'Authorization: Bearer <token>'

Lightweight session-validation endpoint. Returns 200 with { authenticated: true } if the bearer token is valid and not expired; 401 otherwise. Useful for the dashboard to verify on boot whether the cached session is still alive.

Rate limited to 100 requests per 15 minutes.

Token is valid.

Media typeapplication/json
object
authenticated
required
boolean
Example
{
"authenticated": true
}

Token is missing, invalid, or expired.

Media typeapplication/json
object
error
required

Human-readable error message.

string
requestId

Unique identifier for the request, also exposed as the X-Request-Id response header.

string
Example
{
"error": "The session or access key being used is invalid, please run \"aether login\" again.",
"requestId": "req_abc123"
}