Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dumplingai.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Started

DumplingAI Direct Endpoints live under /api/v1. They remain supported and are still the practical path for some endpoint-oriented integrations, especially existing Make.com setups.

1. Create an API key

  1. Sign in to the DumplingAI dashboard
  2. Open API Keys
  3. Create an API key and store it securely
All /api/v1 requests use your DumplingAI API key as a Bearer token.

2. Choose your workflow

Your app

Use direct endpoint request shapes when you want the existing Dumpling endpoint catalog.

Make.com

The current Make.com module uses /api/v1. In practice, most users only need an API key and the setup walkthrough.

n8n / automations

Use your API key with HTTP nodes, templates, or other automation tools that call direct endpoints.

Direct Endpoint Playground

Test Direct Endpoints in the app before wiring them into your workflow.

3. Send a direct endpoint request

curl -X POST https://app.dumplingai.com/api/v1/scrape \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "url": "https://example.com"
  }'

Next steps

API Reference

Browse direct endpoints, parameters, and examples

Web Scraping Tutorial

Follow the current scrape / crawl / extract tutorial

Search

Browse feature-level docs for v1 endpoints

Document Processing

Review PDFs, file conversion, and extraction workflows

Starting a new custom integration?

If you are building a fresh focused data integration in your own app, start with the Unified API Get Started page unless you specifically need the existing Direct Endpoint request shapes.