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 various document types using specialized AI models.
curl --request POST \
--url https://textify-api.argosidentity.com/v1/textify/analyzer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"fileExtension": "PDF",
"docuType": "InvoiceMedical",
"fileData": "base64-encoded-file-data"
}
'{
"status": "success",
"data": {
"patientName": "John Doe",
"hospitalName": "City General Hospital",
"totalAmount": 1500,
"services": [
{
"service": "Consultation",
"amount": 200
},
{
"service": "Lab Test",
"amount": 300
}
]
},
"confidence": 0.95
}La plantilla de facturas generales extrae datos estructurados de facturas comerciales estándar de empresas y proveedores de servicios, incluyendo número de factura, datos del cliente, artículos/servicios e información de pago.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.
{
"fileExtension": "pdf",
"docuType": "InvoiceGeneral",
"fileData": "base64-encoded-general-invoice-data"
}
{
"status": "success",
"data": {
"document": {
"invoiceInfo": {
"invoiceNumber": "INV-2024-001",
"issueDate": "2024-01-15",
"dueDate": "2024-02-15",
"paymentTerms": "Net 30"
},
"customerInfo": {
"name": "ABC Company",
"address": "789 Corporate Blvd, Business City, BC 67890",
"contactPerson": "Jane Manager",
"email": "accounts@abccompany.com"
},
"vendorInfo": {
"name": "Professional Services Inc.",
"address": "123 Service Lane, Provider City, PC 12345",
"contactNumber": "+1-555-9876"
},
"lineItems": [
{
"description": "Website Development Services",
"quantity": 1,
"unitPrice": 5000.00,
"total": 5000.00
},
{
"description": "SEO Optimization",
"quantity": 1,
"unitPrice": 1500.00,
"total": 1500.00
}
],
"totals": {
"subtotal": 6500.00,
"taxRate": 0.08,
"taxAmount": 520.00,
"totalAmount": 7020.00
}
},
"confidence": 0.91
}
}
The file extension of the document to be analyzed. Must be one of the supported formats.
PDF, TIFF, JPG, PNG The type of document to be analyzed. This determines the extraction model and data structure used for analysis.
Supported Document Types:
InvoiceMedical, BusinessRegistration, InvoiceGeneral, MedicalObservation, Contract, ArrivalNotice, BillofLading, Jobapplication, BalanceCertificate_KR, ProofOfAddress The base64 encoded data of the file to be analyzed. The file should be encoded without line breaks or additional formatting.
Successful analysis
The status of the analysis operation. Returns 'success' when the document analysis is completed successfully.
"success"
Extracted structured data from the document
Show child attributes
{
"patientName": "John Doe",
"hospitalName": "City General Hospital",
"totalAmount": 1500,
"services": [
{ "service": "Consultation", "amount": 200 },
{ "service": "Lab Test", "amount": 300 }
]
}Confidence score of the extraction, ranging from 0.0 to 1.0. Higher values indicate more reliable extraction results.
0.95
¿Esta página le ayudó?
curl --request POST \
--url https://textify-api.argosidentity.com/v1/textify/analyzer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"fileExtension": "PDF",
"docuType": "InvoiceMedical",
"fileData": "base64-encoded-file-data"
}
'{
"status": "success",
"data": {
"patientName": "John Doe",
"hospitalName": "City General Hospital",
"totalAmount": 1500,
"services": [
{
"service": "Consultation",
"amount": 200
},
{
"service": "Lab Test",
"amount": 300
}
]
},
"confidence": 0.95
}