Bolivia
Type of ID | Description | Length | Variable length | Mandatory for methods |
---|---|---|---|---|
CI | Cedula de Identidad | 7-10 | Yes | - |
CE | Cedula de Identidad de Extranjero | 8 | Not | - |
NIT | Número de Identificación Tributaria | 9-12 | Yes | - |
The “CI” can be up to 10 characters. It is formed with 7 mandatory numerical digits and then optionally a space and two letters. The two letters represent the departments belonging to the “ Plurinational State of Bolivia”.
There are:
- BE - Beni
- CB- Cochabamba
- CH – Chuquisaca
- LP- La Paz
- OR- Oruro
- PD- Pando
- PT – Potosí
- SC – Santa Cruz
- TJ - Tarija
Examples : For Santa Cruz you can send “SC 1234567”, “1234567”, “SC1234567”, “1234567SC” or “1234567 SC”
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, hyphens,dashes lowercase/uppercase. To validate Argentine documents through the API, you can add or omit the dots, hyphens and lowercase/uppercase.Example: CI
Example: CE
Example: NIT
Valid ID Response
{
"document": {
"id" :"111111111",
"type" :"CI"
},
"country" : "BOL"
}
{
"document": {
"id" :"11111118",
"type" :"CE"
},
"country" : "BOL"
}
{
"document": {
"id" :"111111111",
"type" :"NIT"
},
"country" : "BOL"
}
{
"code": "200",
"description": "Valid id and type document"
}
Validate IDs through the LP api:
Last modified 1mo ago