Skip to main content

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

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

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:
Authorization: Bearer YOUR_TOKEN

Next steps