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

# Introduction

> Get started with the FieldIU Integration API

The FieldIU Integration API lets you create and manage accounts, contacts, leads, work orders, and AI agent interactions programmatically.

**Base URL**

```
https://integration.fieldiu.online
```

**API Version:** v1 — OAS 3.0.1

***

## Authentication

Every request requires two headers:

| Header      | Description                    |
| ----------- | ------------------------------ |
| `X-API-KEY` | Your organization's API key    |
| `X-ORG-ID`  | Your organization's identifier |

```bash theme={null}
curl -X POST https://integration.fieldiu.online/api/v1/accounts \
  -H "X-API-KEY: your_api_key" \
  -H "X-ORG-ID: your_org_id" \
  -H "Content-Type: application/json"
```

<Note>
  Contact your FieldIU administrator to obtain your `X-API-KEY` and `X-ORG-ID` credentials.
</Note>

***

## Available Endpoints

<CardGroup cols={2}>
  <Card title="Accounts" icon="building" href="/developer-guide/accounts">
    Create and retrieve account records
  </Card>

  <Card title="AI Agent" icon="robot" href="/developer-guide/ai-agent">
    Book appointments, confirm work orders, and interact with the FieldIU AI
  </Card>

  <Card title="Contacts" icon="address-book" href="/developer-guide/contacts">
    Create and retrieve contact records
  </Card>

  <Card title="Leads" icon="bullseye" href="/developer-guide/leads">
    Submit new leads into the FieldIU pipeline
  </Card>
</CardGroup>

***

## Response Format

All endpoints return HTTP `200` on success. Error responses include a status code and message body describing the issue.

## Rate Limiting

Requests are subject to rate limiting per organization. If you exceed the limit, you will receive a `429 Too Many Requests` response.
