{
  "info": {
    "name": "ParseMind API v1",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    { "key": "base_url", "value": "http://localhost:8000" },
    { "key": "api_key", "value": "pm_your_key_here" }
  ],
  "item": [
    {
      "name": "Extract document",
      "request": {
        "method": "POST",
        "header": [
          { "key": "Authorization", "value": "Bearer {{api_key}}" },
          { "key": "Accept", "value": "application/json" }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            { "key": "industry", "value": "finance", "type": "text" },
            { "key": "template", "value": "bank_statement", "type": "text" },
            { "key": "file", "type": "file", "src": "" }
          ]
        },
        "url": "{{base_url}}/api/v1/extract"
      }
    },
    {
      "name": "Upstream health",
      "request": {
        "method": "GET",
        "url": "{{base_url}}/api/v1/_debug/upstream?check=1"
      }
    }
  ]
}
