Getting Started
Authenticate and make your first API call to Gluecrawl.
The Gluecrawl API lets you automate scraping workflows — create jobs, trigger runs, and retrieve data programmatically.
Base URL: https://api.gluecrawl.ai/v1/
Authentication
All /v1/ endpoints require an API key passed as a Bearer token.
- Log in to your Gluecrawl dashboard
- Click your avatar → API Key → Generate API Key
- Copy your key — it is shown only once
Include the key in every request:
Authorization: Bearer glue_yourApiKeyHereExample
curl https://api.gluecrawl.ai/v1/jobs \ -H "Authorization: Bearer glue_yourApiKeyHere"Polling Workflow
The API is polling-based. The typical workflow for scraping a site:
- Create a Job —
status: in_progress - Get a Job until
statusisreadyorfailed - Create a Run —
status: queued - Get a Run until
statusiscompletedorfailed - Get Items or CSV export