POST
/
{guru_slug}
/
crawl
/
{crawl_id}
/
stop
/
Stop Website Crawl
curl --request POST \
  --url https://api.gurubase.io/api/v1/{guru_slug}/crawl/{crawl_id}/stop/ \
  --header 'x-api-key: <x-api-key>'
{
    "id": 211,
    "url": "https://getanteon.com/",
    "status": "STOPPED",
    "guru_type": "anteon",
    "discovered_urls": [],
    "start_time": "2025-02-21T10:25:22.710211Z",
    "end_time": "2025-02-21T10:26:15.521433Z",
    "link_limit": 1500
}
Stops a running website crawl operation. This endpoint allows you to halt the crawling process before it completes naturally.

Path Parameters

guru_slug
string
required
The slug of the Guru type associated with the crawl
crawl_id
string
required
The unique identifier of the crawl operation to stop

Headers

x-api-key
string
required
Your API key for authentication. You can obtain your API key from the Gurubase.io dashboard.

Response

id
string
Unique identifier for the crawl operation
url
string
The root URL that was being crawled
status
string
Current status of the crawl operation
guru_type
string
The Guru type that the crawl was initiated for
discovered_urls
list
List of URLs discovered during crawling
start_time
string
Timestamp when crawl started (ISO 8601 format)
end_time
string
Timestamp when crawl ended (ISO 8601 format)
{
    "id": 211,
    "url": "https://getanteon.com/",
    "status": "STOPPED",
    "guru_type": "anteon",
    "discovered_urls": [],
    "start_time": "2025-02-21T10:25:22.710211Z",
    "end_time": "2025-02-21T10:26:15.521433Z",
    "link_limit": 1500
}