> ## Documentation Index
> Fetch the complete documentation index at: https://larkuprag.larkup.de/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape URL

> Trigger a web scraping job to ingest content from a URL.

### Body

<ParamField body="url" type="string" required>
  The URL to scrape.
</ParamField>

<ParamField body="provider" type="string">
  The scraping provider. Currently supports `firecrawl`. Defaults to `firecrawl`.
</ParamField>

### Response

<ResponseField name="jobId" type="string">
  The ID of the ETL job created to process this URL.
</ResponseField>

```json Example Request theme={null}
{
  "url": "https://example.com/docs"
}
```

```json Example Response theme={null}
{
  "jobId": "job-789",
  "status": "queued"
}
```
