Map
Get a flat list of every URL on a website — fast, no crawl needed.
POST
/api/v1/mapRequest body
| Field | Type | Description |
|---|---|---|
| urlrequired | string | Root URL of the site to map. |
| limit | number | Maximum number of URLs to return (1–5000). Default: 1000 |
| search | string | Optional substring filter; only URLs containing it are returned. |
| includeSubdomains | boolean | Also discover URLs on subdomains of the given host. Default: false |
Example request
bash
curl https://neuroapi.me/api/v1/map \ -H "Authorization: Bearer $NEUROAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"url":"https://example.com","limit":500}'Example response
json
{ "success": true, "data": { "links": [ "https://example.com/", "https://example.com/about", "https://example.com/pricing" ] }, "creditsCharged": 1}