Documentation Index
Fetch the complete documentation index at: https://docs.iron.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Introduction
If your organization already verifies customers through SumSub, you can share that verification data with Iron using a share token — no need for your customers to go through KYC again. This requires a tri-party agreement between Iron, your organization, and SumSub. Once signed, the integration is straightforward:Prepare your SumSub applicant
Ensure the profile includes contact info, address, and — for US citizens or residents — SSN or TIN. For IP, follow IP address: supply it (or use SumSub IP capture) when you need EUR-related capabilities; otherwise you may omit
ip_address on the Iron request.Submit the token to Iron
Send the token to Iron’s identification endpoint with the required parameters.
What Data Does Iron Expect?
At minimum, Iron 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 SSN or TIN on the applicant before sharing — see US citizens and residents: SSN and TIN. To ensure smooth onboarding and avoid any additional steps for your customer:- Include the KYC questionnaire in your request. This covers employment status, income, source of wealth, and transaction expectations — data that SumSub may not have collected.
- 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, Iron 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, you must ensure the applicant’s SumSub profile contains all the data Iron requires. Missing fields are the most common cause of failed or incomplete token shares.IP Address
Iron 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:- SumSub IP tracking — Enable SumSub’s IP address tracking so the IP is captured automatically during verification.
- Metadata on the applicant — Store the IP as metadata on the SumSub applicant so it is included in the shared data.
- Via the Iron API — Pass the
ip_addressfield directly in your identification request to Iron.
If you use SumSub’s IP tracking, you do not need to pass
ip_address in the Iron API call — Iron will read it from the shared applicant data.If your integration does not require EUR (for example, no euro virtual accounts, SEPA, or other euro-specific Iron flows), you may omit
ip_address on the Iron 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’sfixedInfo before sharing. If your KYC flow does not collect them, use SumSub’s Change Provided Info endpoint to PATCH them onto the applicant.
| Field | Location | Description |
|---|---|---|
phone | Top-level | Applicant’s phone number (e.g. +12345678) |
nationality | fixedInfo | ISO 3166-1 alpha-3 country code (e.g. DEU) |
street | fixedInfo.addresses[] | Street address |
town | fixedInfo.addresses[] | City |
postCode | fixedInfo.addresses[] | Postal code |
country | fixedInfo.addresses[] | ISO 3166-1 alpha-3 country code |
US citizens and residents: SSN and TIN
For US citizens or US residents, Iron requires a Social Security Number (SSN) or Taxpayer Identification Number (TIN) as part of standard onboarding — see Individual KYC — standard onboarding (SSN requirement). Before you generate the SumSub share token, ensure the applicant profile includes SSN or TIN in the form your SumSub setup expects (for example via SumSub Change Provided Info onfixedInfo or your flow’s equivalent), so the shared payload contains enough data for verification.
Sample Applicant
Below is a representative SumSub applicant object showing the fields Iron needs. Fields extracted automatically by SumSub (document data, review results, questionnaires) are omitted for brevity.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.2. Submit the Token to Iron
| Header | Required | Description |
|---|---|---|
X-API-Key | Yes | Your Iron API key |
Idempotency-Key | Yes | A unique UUID. Prevents duplicate identifications if retried. |
X-Sub-Partner-ID | No | Sub-partner UUID, if scoped to a sub-partner |
| Parameter | Type | Required | Description |
|---|---|---|---|
type | "Token" | Yes | Must be "Token" |
token | string | Yes | The SumSub share token |
intended_use | string | Yes | One of: Investing, PaymentToFriendsFamilyorOthers, PurchaseDigitalAssets, OnlinePurchasesOfGoodsOrServices, Trading |
ip_address | string | No | Applicant IP for fraud/geo signals. Optional if captured via SumSub — see IP address. You may omit it when your integration does not require EUR; otherwise supply it (API, SumSub tracking, or applicant metadata). |
kyc_questionnaire | object | Recommended | See KYC questionnaire fields |
edd_questionnaire | object | Recommended for high-risk | See EDD questionnaire fields |
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
| Field | Values |
|---|---|
employment_status | Employed, SelfEmployed, Unemployed, Retired, Student |
yearly_gross_income | LessThan20000, From20001To30000, From30001To40000, From40001To50000, From50001To60000, From60001To70000, From70001To80000, From80001To90000, From90001To100000, From100001To110000, From110001To120000, From120001To130000, From130001To140000, From140001To150000, MoreThan150000 |
source_of_wealth | Salary, Savings, Investments, CryptoTrading, Other |
expected_monthly_transaction_count | LessThan5, Between5And10, MoreThan10 |
expected_monthly_transaction_volume | LessThan500, MoreThan500LessThan2000, MoreThan2000 |
EDD Questionnaire Fields
| Field | Values |
|---|---|
occupation | Agriculture, ArtsAndEntertainment, Construction, Education, FinancialServices, InformationAndTechnology, Retail, RealEstate, Other |
approximate_net_worth | UpTo25000, Between25001And50000, Between50001And100000, Between100001And300000, Between300001And500000, Between500001And1000000, Over1000001 |
source_of_funds_proof | Base64-encoded document (jpg, png, pdf, doc, docx, xls, xlsx, odt, ods, txt). Max 10 MB. |
3. Handle the Response
The endpoint returns anIdentification object:
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique identification ID |
customer_id | string (UUID) | The customer this identification belongs to |
status | string | Current status — see Identification Lifecycle |
with_edd | boolean or null | Whether EDD was applied — true, false, or null for pre-feature identifications. See Tracking EDD Status |
url | string or null | If Pending, redirect the customer to this URL to complete missing steps |
created_at | string (ISO 8601) | Creation timestamp |
updated_at | string (ISO 8601) | Last update timestamp |
| Status | Cause |
|---|---|
400 | Missing Idempotency-Key, invalid body, or source_of_funds_proof exceeds 10 MB |
401 | Invalid API key or missing CreateIdentification permission |
404 | Customer not found |
409 | An identification is already in progress for this customer |
4. Identification Lifecycle
| Status | Description |
|---|---|
Pending | Waiting for the end-user to complete missing steps via the returned URL |
Processed | Data submitted and verification is underway |
PendingReview | Under manual review by the compliance team |
Approved | Identification approved — customer is verified |
Declined | Identification declined |
Expired | Identification expired due to inactivity |
Processed to Approved within seconds.
Subscribe to the
identification_status webhook to track status changes in real time rather than polling.
