Authentication

You'll need to authenticate your requests to access any of the endpoints in the Review Rover API. In this guide, we'll look at how authentication works. Review Rover offers OAuth2 with a token.

OAuth2 with bearer token

When establishing a connection using OAuth2, you will need your access token — you will find it in the Review Rover Dashboard under API settings. Here's how to add the token to the request header using cURL:

Example request with bearer token

curl -G https://dashboard.reviewrover.co/api/v1/me.json \
  -H "Authorization: Bearer {token}" \

Always keep your token safe and reset it if you suspect it has been compromised.