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
}The Korean Balance Certificate template extracts structured data from Korean bank balance certificates and financial statements, including account information, balance details, and banking data.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": "BalanceCertificate_KR",
"fileData": "base64-encoded-korean-balance-certificate-data"
}
{
"status": "success",
"data": {
"document": {
"accountInfo": {
"accountHolder": "김철수",
"accountNumber": "123-456789-01-234",
"bankName": "신한은행",
"branchCode": "001",
"accountType": "일반통장"
},
"balanceDetails": {
"currentBalance": 5000000,
"currency": "KRW",
"asOfDate": "2024-01-25",
"averageBalance": 4800000
},
"transactionHistory": {
"period": "2024-01-01 to 2024-01-25",
"totalDeposits": 2000000,
"totalWithdrawals": 1500000,
"transactionCount": 45
},
"certificateInfo": {
"issueDate": "2024-01-26",
"certificateNumber": "BC-2024-001234",
"issuedBy": "신한은행 강남지점",
"authorizedBy": "이영희 (지점장)"
},
"additionalInfo": {
"accountStatus": "활성",
"overdraftLimit": 0,
"interestRate": "0.1%"
}
},
"confidence": 0.96
}
}
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
Was this page helpful?
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
}