Skip to content
For LLMsView as Markdown·

Sumsub

KYC/AML identity verification with document checks, liveness detection, and compliance screening.

DetailValue
CategoryiGaming
Base URLhttps://api.sumsub.com
AuthenticationHMAC-SHA256
Endpoints8
Connector keysumsub

Using Sumsub in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Sumsub from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
POST /resources/applicantsCreate applicant
GET /resources/applicants/{applicantId}Get applicant
POST /resources/applicants/{applicantId}/info/idDocUpload ID document
POST /resources/applicants/{applicantId}/status/pendingRequest verification
GET /resources/applicants/{applicantId}/status/apiGet review status
POST /resources/applicants/{applicantId}/aml/checkRun AML check
GET /resources/applicants/{applicantId}/review/historyReview history
GET /resources/applicants/{applicantId}/requiredIdDocsStatusVerification step status

Each endpoint is documented in full below. Use the outline on the right to jump to one.

POST /resources/applicants

Create applicant

DetailValue
Operation IDkyc.createApplicant
MethodPOST
Path/resources/applicants

Parameters

No parameters.

Request Body

FieldType
externalUserIdstring
infoobject
requiredIdDocsobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.createApplicant.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

GET /resources/applicants/{applicantId}

Get applicant

DetailValue
Operation IDkyc.getApplicant
MethodGET
Path/resources/applicants/{applicantId}

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.getApplicant.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

POST /resources/applicants/{applicantId}/info/idDoc

Upload ID document

DetailValue
Operation IDkyc.uploadIdDocument
MethodPOST
Path/resources/applicants/{applicantId}/info/idDoc

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.uploadIdDocument.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

POST /resources/applicants/{applicantId}/status/pending

Request verification

DetailValue
Operation IDkyc.requestVerification
MethodPOST
Path/resources/applicants/{applicantId}/status/pending

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.requestVerification.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

GET /resources/applicants/{applicantId}/status/api

Get review status

DetailValue
Operation IDkyc.getReviewStatus
MethodGET
Path/resources/applicants/{applicantId}/status/api

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.getReviewStatus.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

POST /resources/applicants/{applicantId}/aml/check

Run AML check

DetailValue
Operation IDkyc.runAmlCheck
MethodPOST
Path/resources/applicants/{applicantId}/aml/check

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.runAmlCheck.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

GET /resources/applicants/{applicantId}/review/history

Review history

DetailValue
Operation IDkyc.getReviewHistory
MethodGET
Path/resources/applicants/{applicantId}/review/history

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.getReviewHistory.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.

GET /resources/applicants/{applicantId}/requiredIdDocsStatus

Verification step status

DetailValue
Operation IDkyc.getVerificationStepStatus
MethodGET
Path/resources/applicants/{applicantId}/requiredIdDocsStatus

Parameters

NameLocationTypeRequired
applicantIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Sumsub connection from the Connection dropdown.
  3. In the Operation dropdown, select kyc.getVerificationStepStatus.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Sumsub API reference.