Skip to main content
Obtain anonymous credentials to access public resources without a user account.

GET /auth/core/anonymous

Response

ParameterTypeDescription
access_tokenstringShort-lived anonymous JWT access token.
refresh_tokenstringLong-lived anonymous JWT refresh token.
expires_atintegerTimestamp (ms) when the access token expires.

Example

curl -X GET https://api.blobhub.io/v1/auth/core/anonymous
{
  "access_token": "eyJhbGciOiJIUzI1Ni...",
  "refresh_token": "eyJhbGciOiJIUzI1Ni...",
  "expires_at": 1678900000000
}