Documentation V3
Search…
⌃K

Ecuador

Document Type
Description
Length
Data Type
Examples
CE
Cédula = Identity Card
10
Numeric
0603027988
CI
Cédula de Identidad
10
Numeric
1004922993
RUC
Registro Único de Contribuyentes: Tax ID
13
Numeric
1790360741001
PASS
Pasaporte = Passport
13
Alphanumeric
PX39582891478

Example: How to validate IDs through the api?

Remember that you can validate documents through the LP api. See Document Validation service.
Below you can find some examples to validate through our api. You can also test with the examples above. Please, note the structure of each ID type (lenght, dots, hyphen, lowercase/uppercase). However, take into account that we are still working in Ecuadorian ID validation service.
Example: CE
Example: RUC
Example: PASS
Valid ID Response
{
"document": {
"id" :"0603027988",
"type" :"CE"
},
"country" : "ECU"
}
CE type also admits hypen. However, our system does not support dots for CE type validation.
{
"document": {
"id" :"1391727259001",
"type" :"RUC"
},
"country" : "ecu"
}
Please note that at the moment our Ecuadorian Validation service via API does not support dots for RUC type.
Ecuadorian PASS ID validation service is being developed
{
"code": "200",
"description": "Valid id and type document"
}
Validate IDs through the LP api:

Check the Country ISOCode 3:

Last modified 15d ago