Validate an access token
GET/ping
Checks that your instance is reachable and that your access token is valid. A successful call returns {"status": "ok"}.
This endpoint is authenticated — it is not a public liveness probe. A request without a valid bearer token returns 401 with {"message": "Unauthenticated."}, so a 200 confirms both reachability and token validity.
It takes no workspace, and a token belonging to any workspace role can call it. Available in Mixpost Pro only, and only when API access tokens are enabled; Mixpost Enterprise does not provide this endpoint.
Full path: /api/ping, or /{corePath}/api/ping if your instance sets a core path.
Responses
- 200
- 401
Service is reachable and the bearer token is valid.
The bearer token is missing, malformed, unknown, or expired.