Testing your access token
Once you've created your access token, you can test it by sending a test request to our health
endpoint:
curl -X GET "https://api.intruder.io/v1/health/" \
-H "Authorization: Bearer <YOUR_ACCESS_TOKEN>"
You'll receive a success
response if your access token is valid:
{
"data":"All is good! You are authenticated as <your email>."
}
You're good to go!
You can now dive into the API reference
Please note that if you're using the Try it
feature in our API reference you will have to add the Bearer
prefix manually, i.e. type Bearer <your_access_token>
into the input box.
Updated about 4 years ago