Skip to main content

Get Started

DumplingAI v1 is the direct endpoint surface under /api/v1. It remains supported and is 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.

API Playground

Test the current endpoint-oriented product in the app before wiring it 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 integration in your own app, start with the capability-first Get Started page unless you specifically need the existing direct endpoint request shapes.