Authentication

You'll need to authenticate your requests to access any of the endpoints in the Jarside API. In this guide, we'll look at how authentication works.

OAuth2 with bearer token

The unique way to authenticate with the Jarside API is by using OAuth2. When establishing a connection using OAuth2, you will need your access token — you will find it here. Here's how to add the token to the request header using cURL:

Example request with bearer token

curl https://api.jarside.ai/v1/articles/list \
  -H "Authorization: Bearer {token}"

Security Advice

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