API Authentication

ID Analyzer V2 API is authenticated with API key, you should make API requests with X-API-KEY HTTP header.

Using an API key

Pass the API key into the API call as a HTTP header with the following format.

X-API-KEY: Tm26dxaghtf6cGU2dTOpHmkFNlNe4l

🚧

API Key Retrieval

All keys used within the documentation are dummy keys. Each customer needs to follow the steps provided in Obtaining Key & retrieve their private keys to execute the endpoints.

Here is how a cURL looks like with an API Key.

curl --location --request POST 'https://api2.idanalyzer.com/scan' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: Tm26dxaghtf6cGU2dTOpHmkFNlNe4l' \
--data-raw '
{
     "profile": "60c1627340a09ce39d8bf48f",
     "document": "/9j/4AAQSkZJRg..."
}
'