Authentication

Authentication (Token-based)

The Justt API leverages API keys as the means to authenticate requests. If you need an API key, please reach out to your integration section in the hub and grab the API key.

It's crucial to understand that your API keys come with a significant level of privilege, and thus, it's essential to keep them well-guarded. Avoid sharing your secret API keys in publicly accessible spaces like GitHub, client-side code, or any other open forums.

Authentication with our API is achieved through the use of the HTTP Authorization Header. When making requests, make sure to include an Authorization header containing a valid token.

Here's an example of the header format:

curl --request POST \
     --url https://api.justt.ai/v1/transactions \
     --header 'accept: application/json' \
     --header 'authorization: Bearer <token>' \
     --header 'content-type: application/json'

What’s Next