Notes

  • Only one image can be downloaded per API call.
  • If the requested image type does not exist for the submission, an error will be returned.

1. Endpoint

GET/Image
GET https://rest-api.argosidentity.com/v3/image

2. Authentication

Include the API key in the x-api-key header:

x-api-key
x-api-key: {yourAPIKey}

3. Request Parameters

submissionId
string
required

Unique ID of the submission

type
string
required

Type of image to download

  • idImage: Front side of the ID
  • idBackImage: Back side of the ID
  • selfieImage: Selfie image
  • addressImage: Address document image

4. Request Example

GET/Image
curl --location --request GET 'https://rest-api.argosidentity.com/v3/image?submission_id={submission_id}&type=idImage' \
--header 'x-api-key: {yourAPIKey}'

5. Response

5-1. Success Response

If the request is successful, the API directly returns the requested image file.

This API is a convenient way to retrieve and download various images uploaded during the ID Check submission process.