GET
/api/sites/{projectSlug}/searchSearch blog
Public search across published posts, tags, and nav links for a project slug.
Request
GET /api/sites/{projectSlug}/search?q=your+queryThe q parameter supports optional mode prefixes (see the public blog search UI). Empty query returns limited tag/link results.
Response
{
"results": [
{ "type": "post", "title": "…", "description": "…", "slug": "…" },
{ "type": "tag", "title": "…", "slug": "…" },
{ "type": "link", "title": "…", "url": "…" }
]
}No API key required.