LobbyStack

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.

Who this discovery surface is for

These endpoints help developers, search engines, AI agents, feed readers, and integration tools identify LobbyStack's public documentation and machine-readable product resources. They are discovery interfaces, not an authenticated control plane for customer calls or accounts.

Access and response behavior

  • • Public discovery endpoints accept unauthenticated GET or HEAD requests.
  • • The status endpoint reports public service health; it does not expose tenant or operational data.
  • • Protected application APIs are documented separately and require the authentication method published by the application host.
  • • The homepage supports Accept: text/markdown negotiation; other published Markdown representations are available at the .md endpoints listed below.

Discovery endpoints

EndpointContent typePurpose
/.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.
/feed.xml application/rss+xml Full-content RSS feed for blog discovery.
/schemamap.xml application/xml Structured-data endpoint discovery map.
/schema/page.json application/ld+json JSON-LD graph for public pages.
/schema/post.json application/ld+json JSON-LD graph for blog posts.
/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

Homepage 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"

Related resources