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

# Introduction

> Overview of the Zeeg REST API — endpoints, scopes, webhooks, and SDKs for building scheduling and booking integrations on the Zeeg platform.

Welcome to the Zeeg API. Zeeg is a scheduling platform built in Europe that helps individuals and teams automate their scheduling workflows. Our API gives you programmatic access to the full power of Zeeg, so you can build custom integrations, automate operations, and embed scheduling into your own products.

## Get started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get up and running with your first API call in minutes.
  </Card>

  <Card title="Authentication" icon="lock" href="/authentication">
    Learn how to authenticate your requests using API keys.
  </Card>

  <Card title="API Reference" icon="code" href="/api/workspaces-teams/check-logged-in-user">
    Explore the full list of available endpoints and parameters.
  </Card>

  <Card title="Webhooks" icon="webhook" href="/guides/webhooks-guide">
    Receive real-time notifications when events happen in Zeeg.
  </Card>
</CardGroup>

## What can you build?

The Zeeg API enables you to:

* **Manage scheduled events** — list, cancel, and hand over scheduled events across your workspace.
* **Query and create bookings** — programmatically create bookings or retrieve booking data for reporting and syncing.
* **Manage availability schedules** — read and update availability rules for users and scheduling pages.
* **Set up webhook subscriptions** — subscribe to events like booking creation, cancellation, or rescheduling for real-time notifications.
* **Manage workspace users and teams** — invite members, assign roles, and organize teams within your workspace.
* **Trigger AI agent outbound calls** — initiate AI-powered outbound calls through the API.

## Base URL

All API requests are made to the following base URL:

```
https://api.zeeg.me/v2
```

<Info>
  You are using **API version 2.0.0**. All endpoints documented here are part of this version.
</Info>

## Authentication

The Zeeg API uses Bearer token authentication. Include your token in the `Authorization` header of every request:

```bash theme={null}
curl https://api.zeeg.me/v2/whoami \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"
```

<Note>
  You can generate and manage your API tokens at [app.zeeg.me/account/settings/api-access](https://app.zeeg.me/account/settings/api-access).
</Note>
