Apify
The whole Apify v2 REST API behind one wildcard route
Proxies the entire Apify v2 REST API — run actors (including the run-sync variants that return results inline), tasks, runs, datasets, key-value stores, and more. Like ElevenLabs, it’s a whole API surface, so the gateway mounts a wildcard and forwards the path after /apify/ verbatim:
Because the path passes through unchanged, new Apify endpoints work without any gateway change. The methods are Apify’s full REST verb set — GET, POST, PUT, DELETE.
Common paths
What the gateway injects and strips
Apify accepts its token as either an Authorization: Bearer header or a token query parameter. The gateway forecloses both channels:
- The
Authorizationheader is overwritten with the secret Apify token (Apify reuses the same header you use for your gateway token). Your gateway token is consumed by the gateway and never reaches Apify. - A client-supplied
tokenquery param is dropped (in any encoding), so the injected token can’t be overridden.
Examples
Run an actor (sync)
Read dataset items
The response is Apify’s JSON, returned unchanged. For request and response fields, follow Apify’s API reference — the gateway does not alter them.