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

# Introduction

> Build AI agents and integrations on top of Leonar CRM.

Leonar is a recruiting CRM that helps teams manage contacts, companies, deals, projects, and outreach sequences. The Leonar API lets you programmatically access and manage all of this data.

## What you can do

<CardGroup cols={2}>
  <Card title="Manage contacts" icon="users">
    Create, search, update, and enrich contacts with emails and phone numbers.
  </Card>

  <Card title="Automate outreach" icon="paper-plane">
    Enroll contacts in sequences, send messages via LinkedIn, email, or WhatsApp.
  </Card>

  <Card title="Track deals" icon="handshake">
    Create and manage deals through pipeline stages, from qualification to close.
  </Card>

  <Card title="Source candidates" icon="magnifying-glass">
    Search for candidates and add them to project pipelines.
  </Card>
</CardGroup>

## Base URL

All API requests use the following base URL:

```
https://app.leonar.app/api/v1
```

## Quick example

```bash theme={null}
curl -X GET "https://app.leonar.app/api/v1/contacts?limit=10" \
  -H "Authorization: Bearer leo_your_api_key"
```

```json theme={null}
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "first_name": "Sophie",
      "last_name": "Martin",
      "title": "Senior Developer",
      "current_company": "Doctolib",
      "emails": [{"email": "sophie@example.com", "type": "work"}],
      "created_at": "2026-01-15T10:30:00Z"
    }
  ],
  "meta": {
    "total": 1250,
    "limit": 10,
    "offset": 0,
    "has_more": true
  }
}
```

## Next steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    Set up your API key and understand scopes.
  </Card>

  <Card title="Quickstart" icon="bolt" href="/guides/quickstart">
    Build your first integration in 5 minutes.
  </Card>
</CardGroup>
