From 475ee71582778fb4d23ace5fdbd4a45267555f5f Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:02:32 +0000 Subject: [PATCH] docs: fix heading hierarchy for async crawling section Promote 'Crawling Asynchronously' from h4 to h3 so it appears as a sibling of the other crawl methods instead of being nested under 'Sitemap-Only Crawl'. Tighten the description to use active voice. Co-Authored-By: micahstairs --- sdks/rust.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdks/rust.mdx b/sdks/rust.mdx index b7d6f867..4abb77c1 100644 --- a/sdks/rust.mdx +++ b/sdks/rust.mdx @@ -57,9 +57,9 @@ The Rust SDK currently targets v1. To use `sitemap: "only"`, call the v2 endpoin -#### Crawling asynchronously +### Crawling Asynchronously -To crawl without waiting for the result, use the `crawl_url_async` method. It takes the same parameters, but it returns a `CrawlAsyncRespone` struct, containing the crawl's ID. You can use that ID with the `check_crawl_status` method to check the status at any time. Do note that completed crawls are deleted after 24 hours. +To crawl without waiting for the result, use the `crawl_url_async` method. It accepts the same parameters as `crawl_url` but returns a `CrawlAsyncRespone` struct containing the crawl's ID. Pass that ID to `check_crawl_status` to poll progress at any time. Completed crawls are deleted after 24 hours.