# Get document types Consult all the types of documents available by country and get a list with the ID and details of each one. **GET** `/v1/identification_types` ## Response parameters This endpoint has no response body. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 400 | 1001 | Public_key not found. | | 401 | 1000 | The credentials are required. | | 404 | 1004 | Identification types not found. | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/v1/identification_types' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json [ { "id": "DNI", "name": "DNI", "type": "number", "min_length": 11, "max_length": 11 } ] ```