Authentication
Bearer token
Our API uses a bearer token system to authenticate you as a user of the API. You can get your token inside your RepliQ account at the page https://app.repliq.co/account . The API is reserved for paid users only. You can get a free trial account at https://app.repliq.co/register but you won’t be able to test the API.
What is a bearer token?
Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. The name “Bearer authentication” can be understood as “give access to the bearer of this token.” The bearer token is a cryptic string, usually generated by the server in response to a login request. The client must send this token in the Authorization header when making requests to protected resources:
Authorization: Bearer <token>Each request, POST or GET, described in this documentation must include this token in the header of the request. Our API accepts only application/json and returns only a JSON type.
const headers = {
"Content-Type": "application/json",
Authorization: `Bearer ${yourToken}`,
};You must replace ${yourToken} with your personal access token.