한국어
cURL
medical-invoice
curl --request POST \ --url https://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-medical-invoice-pdf"}'
200
medical-invoice-response
{ "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, "insuranceCoverage": 1000, "patientResponsibility": 250 }, "medicalServices": [ { "service": "Cardiology Consultation", "code": "99204", "amount": 350 }, { "service": "EKG Test", "code": "93000", "amount": 150 }, { "service": "Blood Work", "code": "80048", "amount": 750 } ] }, "confidence": 0.95 }}
Extract structured data from various document types using specialized AI models.
{ "fileExtension": "pdf", "docuType": "BusinessRegistration", "fileData": "base64-encoded-business-registration-data" }
{ "status": "success", "data": { "document": { "businessInfo": { "businessName": "Innovation Solutions LLC", "legalName": "Innovation Solutions, Limited Liability Company", "registrationNumber": "LLC-2024-001234", "businessType": "Limited Liability Company", "formationDate": "2024-01-15", "status": "Active" }, "registeredAgent": { "name": "John Smith", "address": "123 Main Street, Business City, BC 12345", "contactNumber": "+1-555-0123" }, "businessAddress": { "street": "456 Innovation Drive", "city": "Tech City", "state": "TC", "zipCode": "54321", "country": "United States" }, "taxInformation": { "ein": "12-3456789", "taxClassification": "Partnership" }, "owners": [ { "name": "Alice Johnson", "ownershipPercentage": 60, "title": "Managing Member" }, { "name": "Bob Wilson", "ownershipPercentage": 40, "title": "Member" } ] }, "confidence": 0.94 } }
Successful analysis
The response is of type object.
object
이 페이지가 도움이 되었나요?