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
}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": "InvoiceMedical",
"fileData": "base64-encoded-medical-invoice-data"
}
{
"status": "success",
"data": {
"document": {
"patientInfo": {
"name": "John Smith",
"patientId": "P12345",
"dateOfBirth": "1985-03-15",
"contactNumber": "+1-555-0123"
},
"medicalProvider": {
"name": "City General Hospital",
"providerId": "H789",
"address": "123 Medical Center Dr, City, State 12345"
},
"billingDetails": {
"invoiceNumber": "INV-2024-001",
"serviceDate": "2024-01-15",
"dueDate": "2024-02-15",
"totalAmount": 1250.00,
"insuranceCoverage": 1000.00,
"patientResponsibility": 250.00
},
"medicalServices": [
{
"service": "Cardiology Consultation",
"code": "99204",
"amount": 350.00
},
{
"service": "EKG Test",
"code": "93000",
"amount": 150.00
},
{
"service": "Blood Work",
"code": "80048",
"amount": 750.00
}
]
},
"confidence": 0.95
}
}
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
이 페이지가 도움이 되었나요?
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
}