{
    "openapi": "3.0.3",
    "info": {
        "title": "Omni Agent Marketplace API",
        "version": "0.1.0",
        "description": "Public endpoints for Omni Agent Marketplace. This is a minimal early spec \u2014 most commerce actions currently happen through the website. A fuller partner/developer API is planned; see /api for details."
    },
    "servers": [
        {
            "url": "https://omniagentmarketplace.com"
        }
    ],
    "paths": {
        "/sitemap.xml": {
            "get": {
                "summary": "Full site sitemap (XML)",
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/llms.txt": {
            "get": {
                "summary": "Structured summary for AI/LLM crawlers",
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/feed.xml": {
            "get": {
                "summary": "RSS feed of published blog posts",
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/agents": {
            "get": {
                "summary": "Browse all active AI agents (HTML)",
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/audit": {
            "get": {
                "summary": "AI Opportunity Audit form (HTML)",
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            },
            "post": {
                "summary": "Submit an AI Opportunity Audit",
                "responses": {
                    "302": {
                        "description": "Redirect to results"
                    }
                }
            }
        }
    }
}