Public API documentation

LobbyStack exposes a small public discovery surface so agents can find documentation, status, OpenAPI metadata, skills, and machine-readable usage preferences without scraping the site.

These public discovery endpoints do not require authentication. OAuth metadata will be published on the app host when protected APIs expose real authorization endpoints.

Discovery endpoints

Endpoint Content type Purpose
/.well-known/api-catalog application/linkset+json API catalog linkset.
/openapi.json application/vnd.oai.openapi+json OpenAPI service description.
/llms.txt text/plain Compact product, feature, pricing, and discovery context for LLMs.
/index.md text/markdown Homepage summary in markdown.
/features.md text/markdown Feature summary in markdown.
/pricing.md text/markdown Pricing, included usage, usage rules, and overage rates in markdown.
/.well-known/agent-skills/index.json application/json Agent skills discovery index.
/.well-known/mcp/server-card.json application/json MCP server card.

Request examples

Markdown negotiation

curl https://lobbystack.com/ \
  -H "Accept: text/markdown"

API catalog

curl https://lobbystack.com/.well-known/api-catalog \
  -H "Accept: application/linkset+json"