Spider
Proxies the entire Spider REST API — scrape, crawl, search, links, screenshot, transform, and the /data/* retrieval and management endpoints. Like ElevenLabs, it’s a whole API surface, so the gateway mounts a wildcard and forwards the path after /spider/ verbatim:
Because the path passes through unchanged, new Spider endpoints work without any gateway change. The methods mirror what Spider documents — POST for the action endpoints, GET for /data/* retrieval, and DELETE for /data/* deletion.
Common paths
What the gateway injects and strips
Spider authenticates with the Authorization: Bearer header — the same header you use for your gateway token. So the gateway overwrites it with the injected Spider key, rather than stripping it:
- The
Authorizationheader is overwritten with the secret Spider key. Your gateway token is consumed by the gateway and never reaches Spider. - Spider has no query-param spelling of the key, so nothing is dropped from the query string.
Examples
Scrape a URL
Crawl a site
The response is Spider’s JSON, returned unchanged. For request and response fields, follow Spider’s API documentation — the gateway does not alter them.