API · Get API token

API v1
POST /api/v1/login

What it does#

Returns the security token needed to consume the API services. The API user and password come from Admin · Tilopay Checkout.

Authentication#

It does not require a token: this is the operation that issues it. See authentication.

Parameters#

apiuserstring#

Merchant API user, obtained in Admin · Tilopay Checkout.

passwordstring#

Merchant API password, obtained in Admin · Tilopay Checkout.

Request example#

The <...> values are placeholders: replace them with your own credentials and data.

{
  "apiuser": "<api_user>",
  "password": "<api_password>"
}

Response#

{
  "access_token": "<jwt>",
  "token_type": "bearer",
  "expires_in": 86400
}

To interpret a response that is not a success, see how to read an error response.

Last verified: 2026-08-29 · Owner: equipo-integraciones

View as raw Markdown