{"info":{"name":"Zapinner API","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json","description":"Zapinner. One API key works across the full Zapinner capability catalog."},"auth":{"type":"bearer","bearer":[{"key":"token","value":"{{apiKey}}","type":"string"}]},"variable":[{"key":"baseUrl","value":"https://www.zapinner.com"},{"key":"apiKey","value":"zap_test_replace_me"}],"item":[{"name":"Data Preparation","item":[{"name":"Normalize record(s)","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/normalize","host":["{{baseUrl}}"],"path":["api","v1","normalize"]},"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"company\": \" ACME, INC. \",\n    \"amount\": \"$1,245.00\",\n    \"date\": \"9/6/26\"\n  }\n}"}}},{"name":"Match two records","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/match","host":["{{baseUrl}}"],"path":["api","v1","match"]},"body":{"mode":"raw","raw":"{\n  \"left\": {\n    \"customer_name\": \"Acme Incorporated\",\n    \"email\": \"billing@acme.com\",\n    \"invoice_number\": \"INV-1002\"\n  },\n  \"right\": {\n    \"customer_name\": \"ACME Inc.\",\n    \"email\": \"billing@acme.com\",\n    \"invoice_number\": \"INV1002\"\n  }\n}"}}},{"name":"Compare two records","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/compare","host":["{{baseUrl}}"],"path":["api","v1","compare"]},"body":{"mode":"raw","raw":"{\n  \"left\": {\n    \"amount\": 1250,\n    \"status\": \"open\"\n  },\n  \"right\": {\n    \"amount\": 1200,\n    \"status\": \"open\"\n  }\n}"}}},{"name":"Dedupe records","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/dedupe","host":["{{baseUrl}}"],"path":["api","v1","dedupe"]},"body":{"mode":"raw","raw":"{\n  \"records\": [\n    {\n      \"email\": \"billing@acme.com\",\n      \"company\": \"Acme Incorporated\"\n    },\n    {\n      \"email\": \"sales@globex.com\",\n      \"company\": \"Globex\"\n    },\n    {\n      \"email\": \"billing@acme.com\",\n      \"company\": \"ACME Inc.\"\n    }\n  ]\n}"}}}]},{"name":"Intelligence","item":[{"name":"Detect anomalies","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/anomalies","host":["{{baseUrl}}"],"path":["api","v1","anomalies"]},"body":{"mode":"raw","raw":"{\n  \"records\": [\n    {\n      \"id\": \"INV-1\",\n      \"amount\": 100,\n      \"currency\": \"USD\"\n    },\n    {\n      \"id\": \"INV-2\",\n      \"amount\": 105,\n      \"currency\": \"USD\"\n    },\n    {\n      \"id\": \"INV-3\",\n      \"amount\": 98000,\n      \"currency\": \"USD\"\n    }\n  ]\n}"}}},{"name":"Score factors","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/score","host":["{{baseUrl}}"],"path":["api","v1","score"]},"body":{"mode":"raw","raw":"{\n  \"score_type\": \"match_confidence\",\n  \"factors\": [\n    {\n      \"name\": \"email_match\",\n      \"value\": 1,\n      \"weight\": 2,\n      \"note\": \"Email matches exactly\"\n    },\n    {\n      \"name\": \"name_similarity\",\n      \"value\": 0.9,\n      \"note\": \"Names are highly similar\"\n    }\n  ]\n}"}}},{"name":"Explain a finding","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/explain","host":["{{baseUrl}}"],"path":["api","v1","explain"]},"body":{"mode":"raw","raw":"{\n  \"finding\": {\n    \"result\": \"conflict\",\n    \"confidence\": 0.94,\n    \"evidence\": [\n      {\n        \"field\": \"amount\",\n        \"expected\": 12500,\n        \"actual\": 11750\n      }\n    ]\n  }\n}"}}}]},{"name":"Orchestration","item":[{"name":"Analyze (multiple operations)","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/analyze","host":["{{baseUrl}}"],"path":["api","v1","analyze"]},"body":{"mode":"raw","raw":"{\n  \"operations\": [\n    \"normalize\",\n    \"dedupe\",\n    \"anomalies\"\n  ],\n  \"data\": {\n    \"records\": [\n      {\n        \"email\": \"a@acme.com\",\n        \"company\": \"Acme Inc\",\n        \"amount\": 100\n      },\n      {\n        \"email\": \"a@acme.com\",\n        \"company\": \"ACME Incorporated\",\n        \"amount\": 100\n      },\n      {\n        \"email\": \"b@globex.com\",\n        \"company\": \"Globex\",\n        \"amount\": 100000\n      }\n    ]\n  }\n}"}}}]},{"name":"Lead Recovery","item":[{"name":"Recover single lead","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/leads/recovery","host":["{{baseUrl}}"],"path":["api","v1","leads","recovery"]},"body":{"mode":"raw","raw":"{\n  \"lead_id\": \"lead_123\",\n  \"industry\": \"roofing\",\n  \"status\": \"estimate_sent\",\n  \"lead_age_days\": 28,\n  \"last_contact_days\": 19,\n  \"estimate_value\": 12000,\n  \"explicit_rejection\": false\n}"}}},{"name":"Recover batch of leads","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/leads/recovery/batch","host":["{{baseUrl}}"],"path":["api","v1","leads","recovery","batch"]},"body":{"mode":"raw","raw":"{\n  \"leads\": [\n    {\n      \"industry\": \"hvac\",\n      \"status\": \"no_response\",\n      \"lead_age_days\": 190\n    },\n    {\n      \"industry\": \"roofing\",\n      \"status\": \"estimate_sent\",\n      \"lead_age_days\": 28,\n      \"estimate_value\": 12000\n    }\n  ]\n}"}}}]},{"name":"Reconciliation","item":[{"name":"Reconcile two datasets","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/reconcile","host":["{{baseUrl}}"],"path":["api","v1","reconcile"]},"body":{"mode":"raw","raw":"{\n  \"source_a\": {\n    \"name\": \"crm\",\n    \"records\": [\n      {\n        \"email\": \"acme@example.com\",\n        \"customer\": \"Acme Co\",\n        \"amount\": 25000,\n        \"status\": \"won\"\n      },\n      {\n        \"email\": \"globex@example.com\",\n        \"customer\": \"Globex\",\n        \"amount\": 12000,\n        \"status\": \"won\"\n      }\n    ]\n  },\n  \"source_b\": {\n    \"name\": \"billing\",\n    \"records\": [\n      {\n        \"email\": \"acme@example.com\",\n        \"customer\": \"Acme Co\",\n        \"amount\": 22000,\n        \"status\": \"paid\"\n      },\n      {\n        \"email\": \"globex@example.com\",\n        \"customer\": \"Globex\",\n        \"amount\": 12000,\n        \"status\": \"paid\"\n      }\n    ]\n  },\n  \"matching\": {\n    \"primary_keys\": [\n      \"email\"\n    ],\n    \"secondary_keys\": [\n      \"customer\"\n    ],\n    \"compare_fields\": [\n      \"amount\",\n      \"status\"\n    ],\n    \"amount_field\": \"amount\"\n  }\n}"}}}]},{"name":"Verification","item":[{"name":"Verify a claim","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/verify","host":["{{baseUrl}}"],"path":["api","v1","verify"]},"body":{"mode":"raw","raw":"{\n  \"claim\": \"Customer owes $47,250\",\n  \"evidence\": [\n    {\n      \"source\": \"billing\",\n      \"record_id\": \"inv_881\",\n      \"field\": \"amount\",\n      \"value\": 47250\n    }\n  ]\n}"}}}]},{"name":"Revenue Leakage","item":[{"name":"Detect revenue leakage","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/api/v1/revenue-leak","host":["{{baseUrl}}"],"path":["api","v1","revenue-leak"]},"body":{"mode":"raw","raw":"{\n  \"orders\": [\n    {\n      \"order_id\": \"ORD-1\",\n      \"amount\": 18000,\n      \"status\": \"won\"\n    },\n    {\n      \"order_id\": \"ORD-2\",\n      \"amount\": 9000,\n      \"status\": \"won\"\n    }\n  ],\n  \"invoices\": [\n    {\n      \"invoice_id\": \"INV-2\",\n      \"order_id\": \"ORD-2\",\n      \"amount\": 9000,\n      \"status\": \"paid\"\n    }\n  ],\n  \"payments\": [\n    {\n      \"payment_id\": \"PAY-2\",\n      \"invoice_id\": \"INV-2\",\n      \"amount\": 7000\n    }\n  ]\n}"}}}]},{"name":"System","item":[{"name":"Health check","request":{"method":"GET","url":{"raw":"{{baseUrl}}/api/health","host":["{{baseUrl}}"],"path":["api","health"]}}}]}]}