New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
Extract structured data from government ID documents using OCR and data extraction algorithms.
curl --request POST \
--url https://textify-api.argosidentity.com/v1/textify/parser \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"country": "mex",
"image": "base64-encoded-image-data"
}
'{
"rawExtractions": {
"nombre": "LUIS DANIEL",
"domicilio": "C CAMPO AEREO 24",
"clave_de_elector": "SLGZL501094H42BH00",
"fecha_de_nacimiento": "09/09/2001"
},
"standardized": {
"country": "MEX",
"person": {
"name": {
"givenName": "LUIS DANIEL",
"paternalSurname": "GUZMAN",
"fullName": "LUIS DANIEL GUZMAN"
},
"gender": "male",
"dateOfBirth": "2001-09-09",
"nationality": "MEX"
},
"document": {
"type": "voter_id",
"number": "SLGZL501094H42BH00",
"issueDate": "2019-01-01",
"expiryDate": "2030-12-31",
"issuingAuthority": "INSTITUTO NACIONAL ELECTORAL"
},
"address": {
"street": "C CAMPO AEREO 24",
"city": "HUAJUAPAN DE LEON",
"state": "OAX",
"postalCode": "69007"
}
}
}Textify ID AutoParser API es un servicio de extracción de texto de documentos que procesa documentos de identificación gubernamentales y extrae datos estructurados de imágenes. Soporta documentos de identificación utilizando cuatro plantillas diferentes. Primero, documentos de identificación con plantilla general; cualquier documento de identificación que no sea de los países del segundo tipo. El segundo tipo es de los siguientes países: México (MEX), Filipinas (PHL) y Corea del Sur (KOR).Documentation Index
Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
Use this file to discover all available pages before exploring further.
data:image/jpeg;base64, si está presente).
| Status Code | Error Type | Descripción |
|---|---|---|
| 400 | Bad Request | El cuerpo de la solicitud debe contener un campo image con datos base64. |
| 401 | Unauthorized | Acceso denegado: la clave API no está disponible. |
| 413 | Payload Too Large | El archivo de imagen es demasiado grande |
| 415 | Unsupported Media Type | Formato de archivo no soportado. Solo se soportan archivos JPEG y PNG. |
| 429 | Too Many Requests | Se excedió el límite de solicitudes |
| 500 | Internal Server Error | Error del servidor OpenAI/Gemma API |
¿Esta página le ayudó?
curl --request POST \
--url https://textify-api.argosidentity.com/v1/textify/parser \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"country": "mex",
"image": "base64-encoded-image-data"
}
'{
"rawExtractions": {
"nombre": "LUIS DANIEL",
"domicilio": "C CAMPO AEREO 24",
"clave_de_elector": "SLGZL501094H42BH00",
"fecha_de_nacimiento": "09/09/2001"
},
"standardized": {
"country": "MEX",
"person": {
"name": {
"givenName": "LUIS DANIEL",
"paternalSurname": "GUZMAN",
"fullName": "LUIS DANIEL GUZMAN"
},
"gender": "male",
"dateOfBirth": "2001-09-09",
"nationality": "MEX"
},
"document": {
"type": "voter_id",
"number": "SLGZL501094H42BH00",
"issueDate": "2019-01-01",
"expiryDate": "2030-12-31",
"issuingAuthority": "INSTITUTO NACIONAL ELECTORAL"
},
"address": {
"street": "C CAMPO AEREO 24",
"city": "HUAJUAPAN DE LEON",
"state": "OAX",
"postalCode": "69007"
}
}
}