Overview

Extruct API uses Bearer Token Authentication for all API requests. You must include your API token in the Authorization header of each request.

Getting Your API Token

You can generate and manage API tokens from the Extruct AI Dashboard.

Using Your API Token

Include your API token in the Authorization header for all requests:

Authorization: Bearer YOUR_API_TOKEN

Testing Authentication

To verify your authentication, make a GET request to the /v1/user endpoint. This will return details about the authenticated user.

Request

curl -X GET "https://api.extruct.ai/v1/user" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response Example

{
  "user_id": "user_123456",
  "email": "example@gmail.com",
  "available_credits": 1000,
  "organization_id": null,
  "organization_name": null,
  "organization_slug": null
}

If your token is invalid or missing, you’ll receive a 401 Unauthorized response.

If you experience issues, regenerate your API token from the Extruct AI Dashboard or contact support.


You’re now ready to authenticate and interact with Extruct API!