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

# Orchestration

> Paradime Bolt Integration: Connect Bolt with other orchestration tools for dbt™ projects. Enhance workflow automation and management without struggles.

Paradime provides an handy API to be able to include Bolt runs within your existing data pipeline,with tools such as Airflow, Prefect, Dagster, and Azure Data Factory (ADF).

### Requirements[​](https://app.demo.paradime.io/_help/92e9662/bolt-api#requirements)

To trigger runs and check the status of a running schedules using the Bolt API you will need:

* **`API Key`**
* **`API Secret`**
* **`API Endpoint`**

<Card title="Generate Api Keys Legacy" href="/developers/generate-api-keys-legacy" horizontal icon="arrow-right" />

### API Endpoints

To integrate Bolt schedules we provide two endpoints within Paradime:

* trigger a schedule run
* check the status of a run

### Schedule configurations

You will need a schedule name defined in the `paradime_schedules.yml` or in the UI.

For schedules you want to use with the [Bolt API,](/products/bolt/bolt-api) make sure to set the schedule cron configuration as `OFF` (see example below).

```yaml title="paradime_schedules.yml" lineNumbers theme={"system"}
schedules:
  - name: operations_run
    slug: operations-run-b3c4d5
    schedule: "OFF"
    environment: production
    commands:
      - dbt seed
      - dbt run -m +fact_orders
    owner_email: "fabio@paradime.io"
    notifications:
      slack_channels:
        - channel: "#tmp-alert-testing"
          events:
            - passed
            - failed
```


## Related topics

- [Translation of Key Terms](/guides/migrations/dbt-cloud-tm-importer/translation-of-key-terms.md)
- [MCP Server](/products/dino-ai/mcp-server/index.md)
- [Github Actions to Paradime Bolt](/guides/migrations/migrating-dbt-tm-jobs-from-github-actions-to-paradime-bolt.md)
- [Integrations](/products/bolt/integrations/index.md)
- [Migrations](/guides/migrations/index.md)
