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

# Introduction

> Welcome to the Inrconnect API Reference

<Note>
  This section contains the official API reference documentation for
  **Inrconnect**. Use it to explore endpoints, authentication, and
  data models that power your integration.
</Note>

## Welcome

The Inrconnect API enables developers to securely access and manage data
from their organizations. With a simple API key, you can integrate
Inrconnect into your workflows, sync data, and build automations.

This documentation is generated directly from our
[OpenAPI 3.1.0 specification](./openapi.json), ensuring it is always up to date.

<Card title="Organization Endpoints" icon="building-2" href="./openapi.json">
  View the OpenAPI specification file
</Card>

## Authentication

All API endpoints require authentication via an **API Key** passed in the
request header:

```http
X-API-Key: your_api_key_here
```

This is defined in the OpenAPI specification as:

```json
"security": [
  {
    "ApiKeyAuth": []
  }
]
```

You can generate and manage your API keys from the Inrconnect Dashboard.

## Base URLs

**Production:** `https://api.inrconnect.com`

## Next Steps

Start with the `GET /organization` endpoint to verify your integration and retrieve your organization details.

Explore additional endpoints as your integration grows.
