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 conocimiento de embarque extrae datos estructurados de documentos de transporte para carga y envíos de mercancías, incluyendo detalles de envío, información de la carga y términos de transporte.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": "BillofLading",
"fileData": "base64-encoded-bill-of-lading-data"
}
{
"status": "success",
"data": {
"document": {
"billOfLadingInfo": {
"blNumber": "BL-2024-001234",
"issueDate": "2024-01-20",
"vessel": "MSC Mediterranean",
"voyage": "V-123"
},
"shipper": {
"name": "International Trading Co.",
"address": "123 Trade Street, Trade City, TC 12345",
"contactPerson": "Mike Trader",
"phone": "+1-555-0123"
},
"consignee": {
"name": "Global Import Solutions",
"address": "456 Import Avenue, Port City, PC 67890",
"contactPerson": "Lisa Import",
"phone": "+1-555-9876"
},
"notifyParty": {
"name": "Customs Broker Services",
"address": "789 Broker Street, Broker City, BC 54321"
},
"cargoDetails": {
"description": "Automotive parts and machinery",
"weight": "5,000 kg",
"measurement": "25 cubic meters",
"packages": 200,
"containerNumbers": ["MSCU1234567", "MSCU7654321"]
},
"freightTerms": "FOB Origin",
"paymentTerms": "Prepaid",
"specialInstructions": "Handle with care, temperature controlled"
},
"confidence": 0.92
}
}
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
}