GET
/
licencia
/
info
/
{dni}
cURL
curl --request GET \
  --url https://api.factiliza.com/v1/licencia/info/{dni} \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "message": "Exito!",
  "data": {
    "numero_documento": "10400310",
    "nombre_completo": "CARLOS EDGARDO DELGADO RIVERA",
    "licencia": {
      "numero": "Q10400310",
      "categoria": "A I",
      "fecha_expedicion": "",
      "fecha_vencimiento": "06/03/2027",
      "estado": "VIGENTE",
      "restricciones": "SIN RESTRICCIONES"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dni
string
required

El dni a consultar

Response

200
application/json

licencia response

The response is of type object.