FeedIndex

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/:id

Response

{
  "name": "Feature Requests",
  "description": "Share your ideas for new features",
  "isPaid": true,
  "customDomain": "feedback.yoursite.com",
  "thankYouMessage": "Thanks for your feedback!"
}
FieldTypeDescription
namestringBoard name
descriptionstring | nullBoard description
isPaidbooleanWhether the workspace is on a paid plan
customDomainstring | nullVerified custom domain, if any
thankYouMessagestring | nullCustom message shown after post submission

List board tags

Retrieve all tags for a board. No authentication required.

GET /api/v1/public/boards/:id/tags

Response

[
  {
    "id": "uuid",
    "name": "UI",
    "slug": "ui",
    "colour": "#3b82f6"
  },
  {
    "id": "uuid",
    "name": "Performance",
    "slug": "performance",
    "colour": "#10b981"
  }
]

On this page