{
  "openapi": "3.0.0",
  "info": {
    "title": "Become Agent Fingerprint API",
    "description": "API for identifying and logging technical fingerprints of AI agents.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://sheep.becomemore.dk",
      "description": "Primary Sheep Pen server"
    }
  ],
  "paths": {
    "/agent-mirror.php": {
      "get": {
        "summary": "Retrieve agent fingerprint",
        "operationId": "getFingerprint",
        "description": "Returns the exact headers and metadata the agent is sending to the server.",
        "responses": {
          "200": {
            "description": "Fingerprint successfully captured",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": { "type": "string" },
                    "mirrored_headers": { "type": "object" }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}