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

# Import to Postman

You can import our OpenAPI specification into [Postman](https://www.postman.com/downloads/) (or any other API client that supports OpenAPI 3.1). This will automatically set up all endpoints with proper authentication and request schemas.

<Steps>
  <Step title="Open Postman">
    Click **Import** in the top left corner
  </Step>

  <Step title="Import from URL">
    Select the **Link** tab and paste this URL:

    ```
    https://api.krea.ai/openapi.json
    ```
  </Step>

  <Step title="Complete Import">
    Click **Continue** and then **Import** to add the collection
  </Step>

  <Step title="Configure Authentication">
    1. Right-click the imported collection and select **Edit**
    2. Go to the **Authorization** tab
    3. Select **Bearer Token** as the Type (this should be pre-configured from the OpenAPI spec)
    4. Enter your API token in the Token field (format: `id:secret`)
    5. Click **Save** - this will apply to all requests in the collection
  </Step>
</Steps>

## Benefits of Using Postman

* **Pre-configured Requests**: All endpoints are set up with correct headers and schemas
* **Easy Testing**: Test API calls without writing code
* **Environment Variables**: Manage different API tokens for dev and production
* **Request History**: Track all your API calls
* **Code Generation**: Export requests as code in multiple languages

<Tip>
  Don't have Postman yet? [Download Postman](https://www.postman.com/downloads/) to get started.
</Tip>
