QANATIX
Collections

Example Collections

Real upload examples for common industries.

Example Collections

These are examples — you can create any collection for any industry.

Manufacturing

curl -X POST https://api.qanatix.com/api/v1/upload/manufacturing/part/batch \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"records": [
    {
      "name": "Stainless Steel Bolt M8x40 A2",
      "source_id": "ERP-001",
      "collection_data": {
        "part_number": "SS-M8-40-A2",
        "material": "Stainless Steel A2",
        "standard": "DIN 931",
        "price_eur": 0.12,
        "moq": 100,
        "lead_time_days": 3,
        "in_stock": true,
        "certifications": ["ISO 9001", "RoHS"],
        "country": "DE"
      }
    }
  ]}'

Pharma & Clinical

curl -X POST https://api.qanatix.com/api/v1/upload/pharma/compound/batch \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"records": [
    {
      "name": "Aspirin",
      "source_id": "CMP-001",
      "collection_data": {
        "compound_id": "ASA-100",
        "inn": "acetylsalicylic acid",
        "indication": "pain relief",
        "phase": "approved",
        "contraindications": ["bleeding disorders", "aspirin allergy"],
        "dosage": "500mg",
        "regulatory_status": "approved"
      }
    }
  ]}'

Financial Compliance

curl -X POST https://api.qanatix.com/api/v1/upload/finance/record/batch \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"records": [
    {
      "name": "Acme Corp",
      "source_id": "FIN-001",
      "collection_data": {
        "lei": "529900EXAMPLE",
        "record_legal_name": "Acme Corporation",
        "jurisdiction": "US",
        "sanctions_list": [],
        "pep_status": false,
        "risk_score": 12,
        "last_screening_date": "2026-04-01"
      }
    }
  ]}'

Defence & Aerospace

curl -X POST https://api.qanatix.com/api/v1/upload/defence/equipment/batch \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"records": [
    {
      "name": "Night Vision Goggles NVG-7",
      "source_id": "DEF-001",
      "collection_data": {
        "nsn": "5855-01-645-0123",
        "stanag_ref": "STANAG 4694",
        "mil_std": "MIL-STD-810G",
        "protection_level": "Gen 3",
        "classification": "restricted",
        "platform_compatibility": ["infantry", "vehicle-mounted"]
      }
    }
  ]}'

Internal Documents

For company wikis, SOPs, and internal knowledge:

curl -X POST https://api.qanatix.com/api/v1/upload/internal_docs/document/batch \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"records": [
    {
      "name": "Employee Onboarding SOP",
      "source_id": "DOC-001",
      "collection_data": {
        "document_type": "SOP",
        "department": "HR",
        "author": "Jane Doe",
        "version": "2.1",
        "tags": ["onboarding", "hr", "new-hire"],
        "last_reviewed": "2026-03-15"
      }
    }
  ]}'

Any fields you include in collection_data are indexed and searchable.

On this page