{
  "openapi": "3.0.3",
  "info": {
    "title": "q-finder.com Agent API",
    "version": "1.0.0",
    "description": "API specifications for q-finder.com AI Agent interactions"
  },
  "paths": {
    "/api/agent-pay": {
      "post": {
        "summary": "Agent Native Payment Endpoint",
        "x-payment-info": {
          "intent": "charge",
          "method": "stripe",
          "amount": 100,
          "currency": "USD"
        },
        "responses": {
          "402": {
            "description": "Payment Required"
          }
        }
      }
    },
    "/api/search": {
      "get": {
        "summary": "Search Endpoint",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Search Results"
          }
        }
      }
    }
  }
}
