API Documentation

Integrate our powerful AI solutions into your applications with our comprehensive API documentation and SDKs.

Business Documents

Advanced AI processing engine for invoices and business documents

Endpoint: https://api.winz.ai/business-invoice/process

Parameters

  • document- Base64 encoded document file (required)
  • format- Output format (optional, default: 'json')
  • language- Response language (optional, default: 'en')
  • document_type- Type of document (optional, e.g., 'invoice', 'receipt')
import requests
import json

url = "https://api.winz.ai/business-invoice/process"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
payload = {
        "document": "Base64 encoded document file (required)",
    "format": "Output format (optional, default: 'json')",
    "language": "Response language (optional, default: 'en')",
    "document_type": "Type of document (optional, e.g., 'invoice', 'receipt')"
}

response = requests.post(url, headers=headers, json=payload)
result = response.json()
print(result)

Medical Lab Reports

Advanced processing and analysis of laboratory test results

Endpoint: https://api.winz.ai/lab-report/process

Parameters

  • lab_report- Lab report data (required)
  • analysis_type- Type of analysis (required)
  • reference_ranges- Custom reference ranges (optional)
  • include_trends- Include historical trends (optional, default: false)
import requests
import json

url = "https://api.winz.ai/lab-report/process"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
payload = {
        "lab_report": "Lab report data (required)",
    "analysis_type": "Type of analysis (required)",
    "reference_ranges": "Custom reference ranges (optional)",
    "include_trends": "Include historical trends (optional, default: false)"
}

response = requests.post(url, headers=headers, json=payload)
result = response.json()
print(result)

Chest X-Ray Insights

Advanced AI-powered chest X-ray pathology detection

Endpoint: https://api.winz.ai/chest-x-ray/process

Parameters

  • medication_data- JSON data object with medication details (required)
  • analysis_type- Type of analysis (required, e.g., 'interactions', 'dosage')
  • patient_data- Patient medical history (optional)
  • format- Response format (optional, default: 'json')
import requests
import json

url = "https://api.winz.ai/chest-x-ray/process"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
payload = {
        "medication_data": "JSON data object with medication details (required)",
    "analysis_type": "Type of analysis (required, e.g., 'interactions', 'dosage')",
    "patient_data": "Patient medical history (optional)",
    "format": "Response format (optional, default: 'json')"
}

response = requests.post(url, headers=headers, json=payload)
result = response.json()
print(result)

Medicaments Analytics

Intelligent analysis of pharmaceutical data and medications

Endpoint: https://api.winz.ai/medicaments/process

Parameters

  • medication_data- JSON data object with medication details (required)
  • analysis_type- Type of analysis (required, e.g., 'interactions', 'dosage')
  • patient_data- Patient medical history (optional)
  • format- Response format (optional, default: 'json')
import requests
import json

url = "https://api.winz.ai/medicaments/process"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
payload = {
        "medication_data": "JSON data object with medication details (required)",
    "analysis_type": "Type of analysis (required, e.g., 'interactions', 'dosage')",
    "patient_data": "Patient medical history (optional)",
    "format": "Response format (optional, default: 'json')"
}

response = requests.post(url, headers=headers, json=payload)
result = response.json()
print(result)

Prescription Insights

Real-time analysis of medical prescriptions and treatment plans

Endpoint: https://api.winz.ai/prescription/process

Parameters

  • prescription- Prescription data in JSON format (required)
  • patient_history- Patient medical history (optional)
  • check_interactions- Boolean to check drug interactions (optional)
  • format- Response format (optional, default: 'json')
import requests
import json

url = "https://api.winz.ai/prescription/process"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
payload = {
        "prescription": "Prescription data in JSON format (required)",
    "patient_history": "Patient medical history (optional)",
    "check_interactions": "Boolean to check drug interactions (optional)",
    "format": "Response format (optional, default: 'json')"
}

response = requests.post(url, headers=headers, json=payload)
result = response.json()
print(result)