Skip to main content

Introduction

If your organization already verifies customers through SumSub, you can share that verification data with MoonPay using a share token. Your customers do not need to go through KYC again. This requires a tri-party agreement between MoonPay, your organization, and SumSub. Once signed, the integration is straightforward:
1

Prepare your SumSub applicant

The profile must include contact info, address, and (for US citizens or residents) an SSN or ITIN in fixedInfo.tin. For IP, follow IP address: supply it (or use SumSub IP capture) when you need EUR-related capabilities. Otherwise you can omit ip_address on the MoonPay request.
2

Generate a share token

Call SumSub’s API to create a one-time share token for your applicant.
3

Submit the token to MoonPay

Send the token to MoonPay’s identification endpoint with the required parameters.
4

Handle the response

If the data is sufficient, onboarding completes in seconds. If not, redirect the customer to complete the missing steps.
Present and sign the terms and conditions before submitting the share token. Ask your customer for their country, fetch the terms via GET /api/terms-and-conditions?country={ISO3}, and record acceptance via POST /api/customers/{id}/signings. See Terms and Conditions.

What Data Does MoonPay Expect?

At minimum, MoonPay expects the applicant data described in the standard onboarding requirements. The share token must carry enough verified data to satisfy these requirements. US citizens and residents must also have an SSN or ITIN in fixedInfo.tin before sharing. See US citizens and residents: SSN and TIN. To keep onboarding smooth and avoid extra steps for your customer:
  • Include the KYC questionnaire in your request. This covers employment status, income, source of wealth, and transaction expectations, which SumSub does not typically collect.
  • Include the EDD questionnaire as well if you already know the customer will transact large amounts or resides in a higher-risk jurisdiction. This prevents a step-up flow later.
If any required data is missing, MoonPay returns a Pending status with a url. This URL opens a hosted SumSub flow that only asks for the missing information, not a full KYC redo. You should redirect your customer to this URL to complete onboarding. See handling missing information for details.

Preparing Your SumSub Applicant

Before generating a share token, the applicant’s SumSub profile must contain all the data MoonPay requires. Missing fields are the most common cause of failed or incomplete token shares.

IP Address

MoonPay uses the applicant’s IP address for fraud and geo signals (including where EUR / euro-denominated or SEPA-related capabilities apply). You can provide it in one of three ways:
  1. SumSub IP tracking: Enable SumSub’s IP address tracking so the IP is captured automatically during verification.
  2. Metadata on the applicant: Store the IP as metadata on the SumSub applicant so it is included in the shared data.
  3. Via the MoonPay API: Pass the ip_address field directly in your identification request to MoonPay.
If you use SumSub’s IP tracking, you do not need to pass ip_address in the MoonPay API call. MoonPay reads it from the shared applicant data.
If your integration does not require EUR (for example, no euro virtual accounts, SEPA, or other euro-specific MoonPay flows), you can omit ip_address on the MoonPay identification request. If you do need EUR-related capabilities, supply the IP using one of the options above so checks can run reliably.

Required Applicant Data

The following fields must be present on the SumSub applicant’s fixedInfo before sharing. If your KYC flow does not collect them, use SumSub’s Change Provided Info endpoint to PATCH them onto the applicant.

US citizens and residents: SSN and TIN

For US citizens or US residents, MoonPay requires a Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN). See Individual KYC standard onboarding for the full requirement. Set this value on the applicant’s fixedInfo.tin field before you generate the share token. If your KYC flow does not collect it, PATCH it onto the applicant with SumSub’s Change Provided Info endpoint. A value starting with 9 is treated as an ITIN, otherwise as an SSN. Dashes are stripped, so 123-45-6789 and 123456789 are equivalent.

Sample Applicant

Below is a representative SumSub applicant object showing the fields MoonPay needs. Fields extracted automatically by SumSub (document data, review results, questionnaires) are omitted for brevity.
The fixedInfo block is the most important section: it contains the data that was provided by the customer and must be collected during your flow or PATCHed via the SumSub API. The info block is typically populated by SumSub’s document extraction and does not need manual intervention.

Integration

1. Generate a SumSub Share Token

Use SumSub’s share token API to issue a one-time token. This call is made server-side using your SumSub credentials.
Share tokens are single-use: SumSub invalidates a token after it has been consumed. Generate a new token for each submission attempt.

2. Submit the Token to MoonPay

Headers Body Parameters
with_edd is a response field only. It reflects whether EDD was applied to the identification. Do not include it in your request body — Iron ignores it.

Basic Request

At minimum, provide the token and intended use:

With KYC Questionnaire

Include the questionnaire to avoid the customer being redirected to a step-up flow:

With KYC + EDD Questionnaire

If the customer resides in a higher-risk jurisdiction or will transact large amounts, include both to complete onboarding in one step:

KYC Questionnaire Fields

EDD Questionnaire Fields

3. Handle the Response

The endpoint returns an Identification object: Sufficient data: onboarding proceeds immediately. with_edd reflects whether EDD was applied — it is set by Iron based on the risk profile, not by your request.
Insufficient data: redirect the customer to complete the missing information:
Error Responses
This endpoint uses two error body shapes. Client errors (400, 401, 403, 404, 409) return a plain JSON string. Server errors (500) return an object with message and trace_id. Quote the trace_id when reporting a 500 to MoonPay.
A client error (4xx) is a JSON string:
A server error (500) is an object:

Proof of Address

There is no separate API field for proof of address (POA). POA is expected to come from the SumSub applicant’s verified documents — it is read from the shared token, not uploaded directly to Iron. If you collect POA during your KYC flow, ensure the document is on the SumSub applicant before generating the share token. Iron reads it automatically. If POA is missing when Iron processes the token, two options:
  1. Collect POA in SumSub, then re-submit: Add the document to the SumSub applicant (via your own flow or SumSub’s API), generate a new share token, and create a new identification. See Re-submitting After Missing Document Data.
  2. Redirect to the hosted step-up flow: Use the url returned on the Pending identification. Iron’s hosted flow collects only the missing documents — the customer does not redo full KYC.
The Iron dashboard showing “Proof of Residence: Not Started” means Iron determined POA is required but was not present in the shared token. It does not mean the identification has failed.

Re-submitting After Missing Document Data

If a Pending response is caused by missing documents on the SumSub applicant (for example, a missing proof of address that was collected later), you cannot update an existing identification. Instead:
  1. Ensure the SumSub applicant has the missing document or data. Use SumSub’s Change Provided Info endpoint to PATCH it if needed.
  2. Generate a new share token for the applicant.
  3. Create a new identification using POST /api/customers/<customer_id>/identifications/v2 with the new token.
Each identification is immutable once created. A new token submission creates a new identification for the same customer.

4. Identification Lifecycle

In the best case, an applicant with sufficient data moves from Processed to Approved within seconds.
Subscribe to the identification_status webhook to track status changes in real time rather than polling.