## Retrieve `client.authStatus.retrieve(RequestOptionsoptions?): AuthStatusRetrieveResponse` **get** `/auth-status` Check if your API key is still valid. ### Returns - `AuthStatusRetrieveResponse` - `authenticated: boolean` True if the API key is still valid. ### Example ```typescript import Revox from '@revoxai/sdk'; const client = new Revox({ apiKey: process.env['REVOX_API_KEY'], // This is the default and can be omitted }); const authStatus = await client.authStatus.retrieve(); console.log(authStatus.authenticated); ```