{
  "openapi": "3.1.0",
  "info": {
    "title": "Collty public discovery API",
    "version": "1.0.0",
    "description": "Public, crawl-safe Collty discovery resources for search engines and AI agents. Private dashboards, chats, authenticated APIs, and user data are intentionally excluded."
  },
  "servers": [
    {
      "url": "https://collty.com"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "AI-readable short description and crawl policy.",
        "responses": {
          "200": {
            "description": "AI-readable short description and crawl policy.",
            "content": {
              "text/plain; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "Expanded AI-readable product context and privacy boundary.",
        "responses": {
          "200": {
            "description": "Expanded AI-readable product context and privacy boundary.",
            "content": {
              "text/plain; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "Live XML sitemap with only public canonical pages, public teams, and published insights.",
        "responses": {
          "200": {
            "description": "Live XML sitemap with only public canonical pages, public teams, and published insights.",
            "content": {
              "application/xml; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/rss.xml": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "RSS feed for Collty Insights.",
        "responses": {
          "200": {
            "description": "RSS feed for Collty Insights.",
            "content": {
              "application/xml; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/atom.xml": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "Atom feed for Collty Insights.",
        "responses": {
          "200": {
            "description": "Atom feed for Collty Insights.",
            "content": {
              "application/xml; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/signals/rss.xml": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "RSS feed for public Collty Signal preview pages. No chats, replies, or direct messages are included.",
        "responses": {
          "200": {
            "description": "RSS feed for public Collty Signal preview pages. No chats, replies, or direct messages are included.",
            "content": {
              "application/xml; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/signals/atom.xml": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "Atom feed for public Collty Signal preview pages. No chats, replies, or direct messages are included.",
        "responses": {
          "200": {
            "description": "Atom feed for public Collty Signal preview pages. No chats, replies, or direct messages are included.",
            "content": {
              "application/xml; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/agent-api.json": {
      "get": {
        "tags": [
          "Public discovery"
        ],
        "summary": "Machine-readable Collty public discovery manifest.",
        "responses": {
          "200": {
            "description": "Machine-readable Collty public discovery manifest.",
            "content": {
              "application/json; charset=utf-8": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  },
  "security": [],
  "tags": [
    {
      "name": "Public discovery",
      "description": "Public pages, feeds, and AI-readable metadata."
    },
    {
      "name": "Privacy boundary",
      "description": "Authenticated and private user/project data is excluded."
    }
  ]
}