Get document types - Identification Types - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get document types

GET

https://api.mercadopago.com/v1/identification_types
Consult all the types of documents available by country and get a list with the ID and details of each one.
Request's parameters
You dont need to use any parameters to make the request.
Response parameters
id
string
Identification type id.
name
string
Identification type name.
type
string
Identification number data type.
min_length
number
Identification number min length.
Errors

400Error

1001

Public_key not found.

401Error

1000

The credentials are required.

404Error

1004

Identification types not found.

Request
curl -X GET \
    'https://api.mercadopago.com/v1/identification_types'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-4599*********755-11221*********d497ae962*********ecf8d85-1*********' \
    
Sample answer
[
  {
    "id": "CPF",
    "name": "CPF",
    "type": "number",
    "min_length": 11,
    "max_length": 11
  }
]