Getting Started
Authentication
The Fantastic.jobs API uses Bearer token authentication. Every request must include an Authorization header containing your API key.
Code
You can find and manage your API keys in the developer portal.
Example request
The example below makes an authenticated GET request to the ATS jobs endpoint, returning ATS-sourced postings from the last 24 hours.
Keep your keys secret
- Treat your API key like a password - never commit it to source control or expose it in client-side code.
- Use environment variables (e.g.
FANTASTIC_JOBS_API_KEY) and load the key at runtime. - Rotate your key immediately if you suspect it has been exposed. You can rotate your key in your account.
Last modified on