Olostep Map endpoint
Trusted by teams worldwide




Discover structure before you scrape or crawl.
Step 1
POST the homepage or any entry URL you want to discover paths from.
Step 2
Use glob patterns like /blog/** to focus on the sections you care about.
Step 3
Receive up to large batches per response; use cursor when more URLs are available.
POST /v1/maps
{
"url": "https://docs.olostep.com"
}The /v1/maps API is tuned for large sites and flexible path rules.
Surface URLs beyond a single sitemap file — useful for messy or partial sitemaps.
include_urls and exclude_urls to narrow to products, docs, or blog sections.
Cap how many URLs you pull when you only need a sample.
Feed discovered URLs into scrapes or batches at scale.
Map once, then route URLs to scrapes, batches, or internal tools.
Inventory indexable URLs and compare against sitemaps.
Export URL lists for redirects and QA.
Give agents a bounded list of pages to read or summarize.
Discover every path
Optional include_urls, exclude_urls, top_n, and cursor for pagination.
{
"url": "https://docs.olostep.com"
}{
"urls": [
"https://docs.olostep.com/",
"https://docs.olostep.com/features/scrapes/scrapes",
"…"
],
"url_count": 1240,
"cursor": null
}Everything you need to know about the Map endpoint.