Heimdall APIs
  1. Authentication
Heimdall APIs
  • About
  • Authentication
    • Intro
    • Get access token
      POST
  • KYC
    • Query person status
      POST
    • Query person status simple
      POST
    • Query person CAP BR
      POST
    • Query person PEP BR
      POST
    • Get query result
      GET
  • Brazil
    • Zip code/CEP
      GET
  1. Authentication

Intro

Authencation#

💡
We provide x-api-key, user and password.
To access any API you need to pass the request headers x-api-key and x-access-token.
To get x-access-token you need to request https://api.heimdall.watch/auth/v1/access-token with x-api-key in header and {"username": test, "password": 123abc} in body.
And to call others endpoints you need to pass in request header:
x-api-key: API_KEY
x-access-token: Bearer ACCESS_TOKEN
Modified at 2024-04-17 14:50:20
Previous
About
Next
Get access token