{
  "info": {
    "_postman_id": "11839d92-1fa0-4072-a1a7-19db797958e2",
    "name": "AffixIO Verification API",
    "description": "Stateless verification infrastructure returning signed allow or deny outcomes. Zero-knowledge circuit proofs, Merkle audit anchoring, and post-quantum attestation paths. Base URL: https://api.affix-io.com. Public specification for integration planning. Authenticated endpoints require a scoped API key.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "api_key",
      "value": "aio_web_demo",
      "type": "string"
    },
    {
      "key": "base_url",
      "value": "https://api.affix-io.com",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Health check",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/api/health",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "api",
            "health"
          ]
        },
        "body": null,
        "description": "Returns service status, circuit readiness, and current Merkle root context."
      }
    },
    {
      "name": "Validate API key",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/auth/check",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "auth",
            "check"
          ]
        },
        "body": null,
        "description": ""
      }
    },
    {
      "name": "Eligibility verification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/verify",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "verify"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": "Evaluate identifier against policy and return allow or deny with optional signed attestation."
      }
    },
    {
      "name": "Identity rules verification (demo)",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/api/demo/identity-verify",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "api",
            "demo",
            "identity-verify"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": "Evaluate records against identity rules and return a Noir-backed proof with allow or deny."
      }
    },
    {
      "name": "Generate zero-knowledge proof",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/api/demo/circuit-prove",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "api",
            "demo",
            "circuit-prove"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": ""
      }
    },
    {
      "name": "Verify zero-knowledge proof",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/api/demo/circuit-verify",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "api",
            "demo",
            "circuit-verify"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": ""
      }
    },
    {
      "name": "Verify circuit by ID",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/circuits/{circuitId}/verify",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "circuits",
            "{circuitId}",
            "verify"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": ""
      }
    },
    {
      "name": "List available circuits",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/circuits",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "circuits"
          ]
        },
        "body": null,
        "description": ""
      }
    },
    {
      "name": "Current Merkle root",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/merkle/root",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "merkle",
            "root"
          ]
        },
        "body": null,
        "description": ""
      }
    },
    {
      "name": "List audit leaves",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/merkle/leaves",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "merkle",
            "leaves"
          ]
        },
        "body": null,
        "description": ""
      }
    },
    {
      "name": "Merkle inclusion proof",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/merkle/proof/{digest}",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "merkle",
            "proof",
            "{digest}"
          ]
        },
        "body": null,
        "description": ""
      }
    },
    {
      "name": "Verify Merkle inclusion proof",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/v1/merkle/verify-proof",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "v1",
            "merkle",
            "verify-proof"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "description": ""
      }
    },
    {
      "name": "Governance and audit statistics",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "https://api.affix-io.com/api/governance-stats",
          "host": [
            "api.affix-io.com"
          ],
          "path": [
            "api",
            "governance-stats"
          ]
        },
        "body": null,
        "description": ""
      }
    }
  ]
}