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
}
}
The Proof of Address template extracts structured data from address verification documents, utility bills, and residence certificates, including address information and verification details.

Template Features

Extracts the following information from address verification documents:
  • Resident information and identification
  • Document type and service provider details
  • Complete address information
  • Billing and service details
  • Document validity and verification status
  • Address verification methods and authorities

Usage Example

{
  "fileExtension": "pdf",
  "docuType": "ProofOfAddress",
  "fileData": "base64-encoded-proof-of-address-data"
}

Response Format

The template returns structured proof of address data including:

Resident Information

  • Resident Name: Full name of the resident
  • Document Type: Type of address verification document
  • Service Provider: Utility or service company name
  • Account Number: Service account identifier

Address Details

  • Street Address: Complete street address
  • City, State, ZIP: Location details
  • Country: Residence country
  • Address Type: Residential, commercial, etc.

Billing Information

  • Billing Period: Service period covered
  • Due Date: Payment deadline
  • Amount: Service amount
  • Service Type: Type of utility or service

Document Information

  • Issue Date: Date document was issued
  • Document Number: Unique document identifier
  • Valid Until: Document expiration date
  • Document Status: Active, expired, etc.

Verification Details

  • Verification Method: How address was verified
  • Verification Date: Date of verification
  • Verified By: Authority that verified address
  • Verification Status: Confirmed, pending, rejected

Sample Response

{
  "status": "success",
  "data": {
    "document": {
      "residentInfo": {
        "name": "David Thompson",
        "documentType": "Utility Bill",
        "serviceProvider": "City Electric Company",
        "accountNumber": "ACC-2024-001234"
      },
      "addressDetails": {
        "streetAddress": "789 Residential Lane",
        "city": "Suburb City",
        "state": "SC",
        "zipCode": "54321",
        "country": "United States"
      },
      "billingInfo": {
        "billingPeriod": "January 2024",
        "dueDate": "2024-02-15",
        "amount": 125.50,
        "serviceType": "Electricity"
      },
      "documentInfo": {
        "issueDate": "2024-01-15",
        "documentNumber": "DOC-2024-001",
        "validUntil": "2024-02-15"
      },
      "verificationDetails": {
        "verificationMethod": "Utility Bill",
        "verificationDate": "2024-01-20",
        "verifiedBy": "City Electric Company",
        "verificationStatus": "Confirmed"
      }
    },
    "confidence": 0.91
  }
}

Supported Proof of Address Types

  • Utility Bills (Electricity, Gas, Water)
  • Bank Statements
  • Credit Card Statements
  • Insurance Documents
  • Government Letters
  • Rental Agreements
  • Mortgage Statements
  • Tax Documents
  • Employment Letters
  • School Enrollment Documents

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Successful analysis

The response is of type object.