Getting Started

Overview

The Add On API allows you to submit customer data and monitor its progress. The ARGOS API employs RESTful Endpoints and utilizes standard HTTP methods.

  • The response data includes the request status and any potential error codes.

  • All response data is provided in JSON format.

  • Token authentication is required.

  • All requests must be performed over HTTPS; HTTP requests will fail.

Getting Started

To use the API, a valid, dedicated API key is required. You can find your API key within the Add On project in the KYC dashboard. If you are not using the Live form and are submitting via the API, please make sure to use POST.

Authentication

The API uses token-based authentication. To utilize the API, it is essential to use the dedicated API key provided by ARGOS.

Authenticate via HTTP Header

You must send the API key along with the query in the HTTP header. The API key should be included in the method request header as 'x-api-key: {yourAPIKey}'.

curl -H "x-api-key: {yourAPIKey}" "https://rest-api.argoskyc.com/..."

API Gateway Error

The API responds with standard HTTP response codes. Successful operations will return a 2XX code. A 4XX code is returned when there is an error in the information sent from the client, and a 5XX code is returned when there is an error on the ARGOS server.

Last updated