POST
/
v1
/
textify
/
analyzer
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"
}'
{
"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
}
}

Korean Balance Certificate Template

The Korean Balance Certificate template extracts structured data from Korean bank balance certificates and financial statements, including account information, balance details, and banking data.

Template Features

Extracts the following information from Korean bank certificates:
  • Account holder information and identification
  • Bank and branch details
  • Account balance and financial status
  • Transaction history and patterns
  • Certificate issuance details
  • Korean banking terminology and formats

Usage Example

{
  "fileExtension": "pdf",
  "docuType": "BalanceCertificate_KR",
  "fileData": "base64-encoded-korean-balance-certificate-data"
}

Response Format

The template returns structured Korean balance certificate data including:

Account Information

  • Account Holder: Korean name of account holder
  • Account Number: Korean bank account number format
  • Bank Name: Korean bank institution name
  • Branch Code: Bank branch identifier
  • Account Type: Type of Korean bank account

Balance Details

  • Current Balance: Current account balance in KRW
  • Currency: Korean Won (KRW)
  • Balance Date: Date of balance statement
  • Average Balance: Average balance over period

Transaction History

  • Period: Date range for transaction history
  • Total Deposits: Sum of all deposits
  • Total Withdrawals: Sum of all withdrawals
  • Transaction Count: Number of transactions

Certificate Information

  • Issue Date: Date certificate was issued
  • Certificate Number: Unique certificate identifier
  • Issuing Branch: Bank branch that issued certificate
  • Authorized By: Bank officer who authorized certificate

Additional Information

  • Account Status: Active, inactive, or suspended
  • Overdraft Limit: Overdraft protection amount
  • Interest Rate: Account interest rate

Sample Response

{
  "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
  }
}

Supported Korean Bank Certificate Types

  • 신한은행 (Shinhan Bank) Balance Certificates
  • KB국민은행 (KB Kookmin Bank) Balance Certificates
  • 우리은행 (Woori Bank) Balance Certificates
  • 하나은행 (Hana Bank) Balance Certificates
  • NH농협은행 (NH Nonghyup Bank) Balance Certificates
  • IBK기업은행 (IBK Industrial Bank) Balance Certificates
  • 씨티은행 (Citibank Korea) Balance Certificates
  • SC제일은행 (SC Jeil Bank) Balance Certificates
  • 한국스탠다드차타드은행 (Standard Chartered Korea) Balance Certificates
  • 한국산업은행 (Korea Development Bank) Balance Certificates

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Successful analysis

The response is of type object.