Authentification

Authentification

Bearer token

Our api use a bearer token system to authentificate you as user to the api. You can get your token inside your RepliQ account at the page https://app.repliq.co/account (opens in a new tab). The API is reserved for paid user only. You can get a free trial account at https://app.repliq.co/register (opens in a new tab) 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, describe in this documentation must use contain 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.


RepliQ API Docs