Authentication
Every call is authenticated by your API key, passed as a parameter.
The api_key parameter
Add api_key to the query string of every request:
https://api.wyndpath.com/v1/?api_key=YOUR_KEY&url=...
Where to find your key
In the console → Settings. There you can generate and revoke your keys depending on your plan.
Keep your key secret. It grants access to your credit quota. Never publish it client-side (browser JavaScript, public repository). Store it in a server-side environment variable. If it leaks, revoke it and generate a new one.
Authentication responses
| Code | Meaning |
|---|---|
| 200 | Valid key, request served. |
401 invalid_api_key | Key missing, invalid, disabled or account blocked. |