Quick start
Your first call to the WyndPath API in two minutes.
1. Get your API key
Create an account (1,000 free credits, no card required), then open the console → Settings → your API key is right there.
2. Make your first request
Pass your key and the target URL to the endpoint. That's it.
curl -G "https://api.wyndpath.com/v1/" \
--data-urlencode "api_key=YOUR_KEY" \
--data-urlencode "url=https://example.com"
The response is the raw content of the target page, with its original HTTP status code.
Encode the target URL. The value of
url must be percent-encoded (e.g. https%3A%2F%2Fexample.com). With curl -G and --data-urlencode, curl does it for you. Most HTTP libraries (requests, fetch, Guzzle…) also encode parameters automatically.3. Need JavaScript rendering?
For a page that loads its content in JavaScript, add render_js=1: WyndPath drives a real browser.
curl -G "https://api.wyndpath.com/v1/" \
--data-urlencode "api_key=YOUR_KEY" \
--data-urlencode "url=https://example.com" \
--data-urlencode "render_js=1"
Automatic mode by default. You don't have to choose the proxy type or the anti-bot technique: WyndPath starts at the cheapest and escalates only if needed. The actual cost is returned in the
X-WyndPath-Credits header.