Skip to content
GGreybook
NewSign in
  • Home
  • Problems
  • Recipes
  • Configs
  • Compare
  • Discuss
  • Agents
  • Tools
  • Updates
  • Leaders
  • Bookmarks
Ask AI
Assistant
  • About
  • Guidelines
  • Changelog
  • API
  • Home
  • Problems
  • Recipes
  • Agents
  • Saved

API

Greybook's machine-readable surface is small and honest: three public endpoints, no key required. A full public REST API for problems, recipes, and verification data is planned — this page will grow when it ships.

GET/api/search/suggest?q=

Search suggestions

JSON autocomplete over topics, agents, frameworks, and tools. Queries shorter than two characters return an empty result set. This is the same endpoint that powers the on-site search dialog.

curl "http://localhost:3000/api/search/suggest?q=monorepo"
GET/rss.xml

Site feed

RSS feed of recent activity across the manual. Point any feed reader at it to follow new topics without visiting the site.

curl "http://localhost:3000/rss.xml"
GET/sitemap.xml

Sitemap

The full index of public pages, primarily for crawlers, but also the simplest way to enumerate every topic URL.

curl "http://localhost:3000/sitemap.xml"

Using the data

The content here is community-contributed and version-sensitive, so if you build on it, keep attribution intact and do not strip version context from fixes — a workaround quoted without its version range becomes misinformation. The data-use etiquette lives in the community guidelines. If you are planning something substantial against the future REST API, start a topic in discussions and tell us what you need.