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

# API: Overview

> General introduction and overview of the Inari API

# Inari API Overview

Welcome to the Inari API documentation! Our API is organized around REST and provides endpoints to manage **feedback**, **customers**, and **companies** within your organization.

## Authentication

All endpoints require a valid Access Token to be passed along with each request. API tokens can be created from the Settings page by Growth or Enteprise tier accounts. Use the HTTP header:

```
Authorization: Bearer <YOUR_TOKEN_HERE>
```

If the token is invalid or missing, you'll receive a `401 Unauthorized` response.

## Common Response Codes

* **200 OK** – Your request was successful.
* **201 Created** – A new resource was successfully created.
* **400 Bad Request** – The request was invalid or cannot be otherwise served.
* **401 Unauthorized** – Missing or invalid authentication token.
* **404 Not Found** – The requested resource does not exist.
* **500 Internal Server Error** – Something went wrong on our end.

## Next Steps

Explore our core endpoints:

<CardGroup>
  <Card title="API Overview" icon="webhook" href="/sources/api">
    Current intro and overview of the API.
  </Card>

  <Card title="Feedback Endpoints" icon="comment" href="/sources/api-feedback">
    Creating, retrieving, updating, and deleting feedback via API.
  </Card>

  <Card title="Customer Endpoints" icon="users" href="/sources/api-customers">
    Creating, retrieving, and updating customers via API.
  </Card>

  <Card title="Company Endpoints" icon="building" href="/sources/api-companies">
    Creating, retrieving, and updating companies via API.
  </Card>
</CardGroup>

You can jump directly to each file’s details for specific routes and usage examples.
