An identification
contains fields necessary for an ID. No need to give any dashes -
, periods .
or any other separations, just give the digits/characters itself.
Here's the types we support:
id_type | Description | Legal Entity Type | Format |
---|---|---|---|
ar_cuil | Código Único de Identificación Laboral | individual | 11 digits |
ar_cuit | Clave Unica de Identificacion Tributaria | business | 11 digits |
br_cnpj | Cadastro Nacional de Pessoas Jurídicas | business | 14 digits |
br_cpf | Cadastro de Pessoas Físicas | individual | 11 digits |
cl_run | Rol Único Nacional | individual | 8-9 digits |
cl_rut | Rol Único Tributario | individual orbusiness | 8-9 digits |
co_nit | Number of Tax Identification | business | 10 digits |
co_cedulas | Cédulas | individual | 7-11 digits |
hn_id | Tarjeta de Identidad | individual | 13 digits |
hn_rtn | Registro Tributario Nacional | business | 14 digits |
in_lei | Legal Entity Identifier | business | 20 chars |
kr_brn | Business Registration Number | business | 10 digits |
kr_crn | Corporate Registration Number | business | 13 digits |
kr_rrn | Resident Registration Number | individual | 13 digits |
passport | International Passport Number | individual | |
sa_vat | Value Added Tax ID | business | 15 digits |
sa_tin | Tax Identification Number | individual | 10-12 digits |
us_ein | Employer Identification Number | business | 9 digits |
us_itin | Individual Taxpayer Identification Number | individual | 9 digits |
us_ssn | Social Security Number | individual | 9 digits |
vn_tin | Tax Identification Number | individual orbusiness | 10/13 digits |
Note: The first two letters of id_type
are the ISO2 country code.
Attribute | Description |
---|---|
id string | Unique identifier for the Identification. |
live_mode boolean | This field will be true if this object was created with a production API key or false if created with a test API key. |
id_type string | The type of identification. Pick the correct one from the table above. |
id_number string | ID numbers are sensitive information and are not included in API responses. |
issuing_country string | Country code conforms to ISO 3166-1 alpha-2. Not needed for ID types with a country code prepended. |
{
"id": "c9bf2462-3a3e-41c5-b5ed-6149fbefd011",
"object": "identification",
"live_mode": true,
"id_type": "us_ein",
"issuing_country": "US",
"discarded_at": null,
"created_at": "2023-08-31T21:39:32.610Z",
"updated_at": "2023-08-31T21:39:32.610Z"
}