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 Job Application template extracts structured data from employment applications, resumes, and job-related documents, including applicant information, qualifications, and employment history.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": "Jobapplication",
"fileData": "base64-encoded-job-application-data"
}
{
"status": "success",
"data": {
"document": {
"applicantInfo": {
"name": "Jennifer Wilson",
"email": "jennifer.wilson@email.com",
"phone": "+1-555-0123",
"address": "123 Career Street, Job City, JC 12345",
"linkedin": "linkedin.com/in/jenniferwilson"
},
"positionApplied": {
"title": "Senior Marketing Manager",
"department": "Marketing",
"location": "New York, NY",
"salaryExpectation": 85000
},
"education": [
{
"degree": "Master of Business Administration",
"institution": "University of Business",
"graduationYear": 2020,
"gpa": "3.8"
},
{
"degree": "Bachelor of Arts in Marketing",
"institution": "State University",
"graduationYear": 2018,
"gpa": "3.9"
}
],
"workExperience": [
{
"company": "Marketing Solutions Inc.",
"position": "Marketing Specialist",
"duration": "2020-2023",
"responsibilities": [
"Developed digital marketing campaigns",
"Managed social media presence",
"Increased brand awareness by 40%"
]
},
{
"company": "Startup Ventures",
"position": "Marketing Intern",
"duration": "2018-2020",
"responsibilities": [
"Assisted with market research",
"Created content for social media",
"Supported event planning"
]
}
],
"skills": [
"Digital Marketing",
"Social Media Management",
"Google Analytics",
"Adobe Creative Suite",
"Project Management"
],
"references": [
{
"name": "John Manager",
"title": "Marketing Director",
"company": "Marketing Solutions Inc.",
"phone": "+1-555-9876"
}
]
},
"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
}