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

# Introduction

> Getting started with the dibby API

## Welcome to the dibby API

The dibby API allows you to programmatically trigger workflows and retrieve results. This enables you to integrate dibby's powerful automation capabilities directly into your workflow.

## Authentication & Setup

To use the dibby API, you'll need two things:

### 1. Get your API token

* Go to [https://dibby.ai/settings/api](https://dibby.ai/settings/api)
* Create and copy your **Token**

<Warning>
  This token gives full access to your account. Keep it secret and never commit
  it to version control.
</Warning>

### 2. Get your worfklowId ID

* Open your application from the dashboard and go to the workflow section
* The `worfklowId` is the UUID in the URL

**Example:**

```
https://dibby.ai/application/08da5fd9-29ed-45cd-8b06-6b938ea33254/workflow/737de5f8-759c-4a5b-bf9a-4cd08ac7f2e0
```

In this example, the workflow ID is: `737de5f8-759c-4a5b-bf9a-4cd08ac7f2e0`

## Base URL

All API requests are made to:

```
https://dibby.ai/api
```

## Authentication

All API endpoints are authenticated using Bearer tokens. Include your token in the Authorization header:

```bash theme={null}
Authorization: Bearer YOUR_TOKEN
```

## Next steps

<CardGroup cols={2}>
  <Card title="Trigger a workflow" icon="play" href="/api-reference/endpoint/create">
    Learn how to trigger workflow runs
  </Card>

  <Card title="Get run status" icon="chart-line" href="/api-reference/endpoint/get">
    Check the status and results of a workflow run
  </Card>
</CardGroup>
