Skip to main content

Quickstart

DumplingAI is a data extraction and automation API. Use it to pull structured data out of websites, PDFs, YouTube videos, TikTok, LinkedIn, Google Search, and more, without managing scrapers, proxies, or third-party integrations. You can use the existing endpoint-oriented API or the newer agent-oriented /api/v2 platform for capability-first execution and provider endpoints. This page combines the product overview with the fastest path to your first successful request.

Choose your path

1. Create an API key

  1. Sign up for a DumplingAI account
  2. Navigate to the API Keys section in your dashboard
  3. Click “Create API Key” and give it a descriptive name
  4. Copy your API key for use in API requests and MCP connections
Keep your API key secure. Do not share it or expose it in client-side code.

2. Send a test request

Start with the Agent API v2 scrape_page capability to verify your setup:
curl -X POST https://app.dumplingai.com/api/v2/run \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "type": "capability",
    "id": "scrape_page",
    "input": {
      "url": "https://example.com",
      "format": "markdown"
    }
  }'

3. Understand credits

DumplingAI uses credits to track API usage.
  • Simple operations like scraping or search usually cost 1-3 credits
  • More complex operations like document extraction or AI image generation cost more
See Credit Costs for the full breakdown, and Agent API v2 for the capability-first surface.

What you can build

Next steps