DocsIntegrationsPlaygroundPricing
Get API Key
SUPACRAWL
StatusSupportDashboard
SUPACRAWL
Getting Started

Quick Start

Three steps take you from a fresh account to a working response in about five minutes: grab an API key, install an SDK (or stick with plain cURL), and fire off your first request.

Step 1 — Get your API key

1

Create a free account at supacrawlx.com/sign-up

2

Open the Dashboard and navigate to API Keys

3

Click "Create New Key" and copy it immediately

4

Store it securely — treat it like a password

Step 2 — Install the SDK

pip install supacrawlx

Step 3 — Make your first request

from supacrawlx import Client

client = Client("YOUR_API_KEY")
result = client.transcript("https://www.youtube.com/watch?v=dQw4w9WgXcQ")
print(result.text)

Example response

200 OK
{
  "videoId": "dQw4w9WgXcQ",
  "language": "en",
  "text": "We're no strangers to love...",
  "segments": [
    { "start": 0.0, "duration": 4.08, "text": "We're no strangers to love" },
    { "start": 4.08, "duration": 3.44, "text": "You know the rules and so do I" }
  ]
}

Next steps