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

# Introduction

> DocOpsAI API for AI-based order processing, customer and product management, and email monitoring

## Welcome

The DocOpsAI API powers an AI-based order processing application that extracts information from email attachments and forwards it to backend systems. It provides endpoints for order management, customer and product CRUD, email watching, and template parameter configuration.

The API reference is generated from our [OpenAPI specification](https://github.com/devopscompanynl/docs/blob/main/api-reference/openapi.json).

## Base URL

All API requests are made to:

```
https://customer.aiotic.ai
```

## Authentication

All API endpoints (except `/healthcheck`) require an API key passed via the `X-API-Key` header. Customer and product endpoints also accept a customer-specific API key.

```json theme={null}
"security": [
  {
    "ApiKeyAuth": []
  }
]
```

## Core concepts

<CardGroup cols={2}>
  <Card title="Orders" icon="file-invoice" href="/api-reference/endpoint/upload-order">
    Upload documents for AI processing and track order status
  </Card>

  <Card title="Customers" icon="users" href="/api-reference/endpoint/list-customers">
    Manage customer records with semantic vector search
  </Card>

  <Card title="Products" icon="box" href="/api-reference/endpoint/list-products">
    Multi-language product catalog management
  </Card>

  <Card title="Email watcher" icon="envelope" href="/api-reference/endpoint/fetch-all-emails">
    Monitor inboxes and automatically process incoming orders
  </Card>
</CardGroup>
