{
  "openapi": "3.1.0",
  "info": {
    "title": "Agora Commercial Spine",
    "description": "Autonomous company front office — agent-first commercial surface\n\nRetrieved live from the running service and re-hosted at its public URL by the Virohana agent-surface renderer.",
    "version": "1.1.0"
  },
  "paths": {
    "/.well-known/agent.json": {
      "get": {
        "summary": "Well Known Agent",
        "description": "Machine-readable capability manifest for autonomous agents (A2A-style agent card).",
        "operationId": "well_known_agent__well_known_agent_json_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/contracts": {
      "get": {
        "summary": "Contracts Endpoint",
        "description": "Serve capability manifest — canonical contract object reference.",
        "operationId": "contracts_endpoint_contracts_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/.well-known/ai-plugin.json": {
      "get": {
        "summary": "Well Known Ai Plugin",
        "description": "OpenAI-style plugin descriptor for agent compatibility.",
        "operationId": "well_known_ai_plugin__well_known_ai_plugin_json_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Llms Txt",
        "description": "Plain-text agent-oriented description.",
        "operationId": "llms_txt_llms_txt_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/manifest.json": {
      "get": {
        "summary": "Manifest Endpoint",
        "description": "Machine-readable service manifest.",
        "operationId": "manifest_endpoint_manifest_json_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/price-sheet.json": {
      "get": {
        "summary": "Price Sheet Endpoint",
        "description": "Machine-readable price sheet.",
        "operationId": "price_sheet_endpoint_price_sheet_json_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/telemetry": {
      "get": {
        "summary": "Telemetry Endpoint",
        "description": "Read-only aggregate demand telemetry: per-window counters (path, method,\nstatus, count, distinct_user_agents_count, mcp_tool_names). No IPs, no tokens,\nno raw user-agent strings — written by the host-side telemetry_aggregator.py.",
        "operationId": "telemetry_endpoint_telemetry_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/inbound/quote": {
      "post": {
        "summary": "Inbound Quote",
        "operationId": "inbound_quote_inbound_quote_post",
        "parameters": [
          {
            "name": "idempotency-key",
            "in": "header",
            "required": false,
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Idempotency-Key"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/inbound/work-request": {
      "post": {
        "summary": "Inbound Work Request",
        "operationId": "inbound_work_request_inbound_work_request_post",
        "parameters": [
          {
            "name": "idempotency-key",
            "in": "header",
            "required": false,
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Idempotency-Key"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/inbound/requests": {
      "get": {
        "summary": "Inbound Requests Feed",
        "description": "Read-only feed of inbound agent requests.",
        "operationId": "inbound_requests_feed_inbound_requests_get",
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer",
              "default": 20,
              "title": "Limit"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/quote": {
      "post": {
        "summary": "Quote Endpoint",
        "description": "Agent posts a job spec -> structured quote via local LLM (Tier-0).",
        "operationId": "quote_endpoint_quote_post",
        "parameters": [
          {
            "name": "idempotency-key",
            "in": "header",
            "required": false,
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Idempotency-Key"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/price_sheet": {
      "get": {
        "summary": "Price Sheet V1",
        "description": "Machine-readable price sheet (v1 path).",
        "operationId": "price_sheet_v1_price_sheet_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/agora/pricing": {
      "get": {
        "summary": "Pricing Human",
        "description": "Human-readable pricing page (render of price sheet).",
        "operationId": "pricing_human_agora_pricing_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/": {
      "get": {
        "summary": "Dashboard",
        "operationId": "dashboard__get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/health": {
      "get": {
        "summary": "Health",
        "operationId": "health_health_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/v1/receipt_verify": {
      "post": {
        "summary": "Receipt Verify",
        "description": "Public verify endpoint for agora-receipts-v1.\nPOST {receipt} -> {valid: bool, reason: str}.",
        "operationId": "receipt_verify_v1_receipt_verify_post",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/v1/verdict": {
      "get": {
        "summary": "Verdict Proxy Get",
        "operationId": "verdict_proxy_get_v1_verdict_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      },
      "post": {
        "summary": "Verdict Proxy Post",
        "operationId": "verdict_proxy_post_v1_verdict_post",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/integration-status": {
      "get": {
        "summary": "Integration Status",
        "description": "Return which Agora integration modules are live.",
        "operationId": "integration_status_integration_status_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/.well-known/oauth-authorization-server": {
      "get": {
        "summary": "Oauth Discovery",
        "description": "OAuth 2.0 authorization server metadata (RFC 8414).",
        "operationId": "oauth_discovery__well_known_oauth_authorization_server_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/.well-known/oauth-protected-resource": {
      "get": {
        "summary": "Oauth Protected Resource Discovery",
        "description": "OAuth 2.0 protected resource metadata (RFC 9728).",
        "operationId": "oauth_protected_resource_discovery__well_known_oauth_protected_resource_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/oauth/register": {
      "post": {
        "summary": "Oauth Register",
        "description": "Dynamic client registration (RFC 7591). Idempotent based on redirect_uris.",
        "operationId": "oauth_register_oauth_register_post",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/oauth/authorize": {
      "get": {
        "summary": "Oauth Authorize Get",
        "description": "Authorization endpoint (GET). Auto-approves (single-user system).",
        "operationId": "oauth_authorize_get_oauth_authorize_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/oauth/token": {
      "post": {
        "summary": "Oauth Token",
        "description": "Token endpoint. Exchange auth code for access token with PKCE validation.",
        "operationId": "oauth_token_oauth_token_post",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "HTTPValidationError": {
        "properties": {
          "detail": {
            "items": {
              "$ref": "#/components/schemas/ValidationError"
            },
            "type": "array",
            "title": "Detail"
          }
        },
        "type": "object",
        "title": "HTTPValidationError"
      },
      "ValidationError": {
        "properties": {
          "loc": {
            "items": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "integer"
                }
              ]
            },
            "type": "array",
            "title": "Location"
          },
          "msg": {
            "type": "string",
            "title": "Message"
          },
          "type": {
            "type": "string",
            "title": "Error Type"
          },
          "input": {
            "title": "Input"
          },
          "ctx": {
            "type": "object",
            "title": "Context"
          }
        },
        "type": "object",
        "required": [
          "loc",
          "msg",
          "type"
        ],
        "title": "ValidationError"
      }
    }
  },
  "servers": [
    {
      "url": "https://agora.virohanalife.com"
    }
  ]
}
