Boards
API endpoints for retrieving board metadata and tags.
Get board
Retrieve metadata for a board by its ID. No authentication required.
GET /api/v1/public/boards/:idResponse
{
"name": "Feature Requests",
"description": "Share your ideas for new features",
"isPaid": true,
"customDomain": "feedback.yoursite.com",
"thankYouMessage": "Thanks for your feedback!"
}| Field | Type | Description |
|---|---|---|
name | string | Board name |
description | string | null | Board description |
isPaid | boolean | Whether the workspace is on a paid plan |
customDomain | string | null | Verified custom domain, if any |
thankYouMessage | string | null | Custom message shown after post submission |
List board tags
Retrieve all tags for a board. No authentication required.
GET /api/v1/public/boards/:id/tagsResponse
[
{
"id": "uuid",
"name": "UI",
"slug": "ui",
"colour": "#3b82f6"
},
{
"id": "uuid",
"name": "Performance",
"slug": "performance",
"colour": "#10b981"
}
]