Map
Quickly discover URLs on a domain.
POST
/api/v1/map1Map returns a list of URLs for a site — fast. It combines sitemap.xml, robots.txt sitemap entries, certificate transparency subdomains, and a shallow link scan. Synchronous and flat 1 credit.
Request
| Parameter | Type | Description |
|---|---|---|
urlrequired | string | The site to map. |
search | string | Only return URLs whose path matches this term. |
limit | number | Cap the number of URLs returned. |
includeSubdomains | boolean | Include discovered subdomains. Defaults to false. |
sitemap | string | Set to only to restrict to sitemap entries, or skip to ignore sitemaps. |
Example
bash
curl -X POST https://peep.shownomore.com/api/v1/map \
-H "Authorization: Bearer peep_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"limit": 100
}'