Verify Access Token

Check if your Access token is working correctly

Verify Me

This API endpoint validates user-generated API keys to ensure their validity and non-expiration. When an API key is provided in the X-AX-KEY header, the response will be a JSON object with the key-value pair {"email": "your@email.com"}, confirming the authenticity of the key. If a valid API key is not provided, the response will be {"email": null}, indicating that the key is either invalid or has expired.

GEThttps://app.aquilax.ai/api/v1/verifyme
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('https://app.aquilax.ai/api/v1/verifyme', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Last updated