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

# Anonymous Sign-In

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

## **GET** `/auth/core/anonymous`

### Response

| Parameter       | Type    | Description                                   |
| :-------------- | :------ | :-------------------------------------------- |
| `access_token`  | string  | Short-lived anonymous JWT access token.       |
| `refresh_token` | string  | Long-lived anonymous JWT refresh token.       |
| `expires_at`    | integer | Timestamp (ms) when the access token expires. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/auth/core/anonymous
  ```

  ```json Response theme={null}
  {
    "access_token": "eyJhbGciOiJIUzI1Ni...",
    "refresh_token": "eyJhbGciOiJIUzI1Ni...",
    "expires_at": 1678900000000
  }
  ```
</CodeGroup>
