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 Business Contracts template extracts structured data from legal contracts and agreements between businesses, including contract terms, parties involved, dates, and legal obligations.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": "Contract",
"fileData": "base64-encoded-business-contract-data"
}
{
"status": "success",
"data": {
"document": {
"contractType": "Service Agreement",
"parties": {
"client": {
"name": "Global Manufacturing Corp.",
"address": "123 Industrial Blvd, Manufacturing City, MC 12345",
"contactPerson": "John Procurement",
"phone": "+1-555-0123",
"email": "procurement@globalmanufacturing.com"
},
"serviceProvider": {
"name": "Tech Solutions LLC",
"address": "456 Tech Drive, Innovation City, IC 67890",
"contactPerson": "Sarah Technical",
"phone": "+1-555-9876",
"email": "sales@techsolutions.com"
}
},
"contractTerms": {
"startDate": "2024-03-01",
"endDate": "2025-02-28",
"renewalTerms": "Automatic renewal for 1 year",
"noticePeriod": "60 days"
},
"financialTerms": {
"contractValue": 250000.00,
"currency": "USD",
"paymentSchedule": "Monthly",
"paymentTerms": "Net 30",
"advancePayment": 50000.00
},
"scopeOfWork": {
"description": "IT infrastructure maintenance and support services",
"deliverables": [
"24/7 system monitoring",
"Monthly maintenance reports",
"Emergency response within 2 hours",
"Quarterly system updates"
],
"performanceMetrics": {
"uptime": "99.9%",
"responseTime": "2 hours",
"resolutionTime": "24 hours"
}
},
"legalClauses": {
"confidentiality": true,
"liabilityLimit": "Service provider liability limited to contract value",
"indemnification": "Mutual indemnification for third-party claims",
"disputeResolution": "Arbitration in accordance with AAA rules"
}
},
"confidence": 0.94
}
}
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
}