List feedback boards
Return every active feedback board for the authenticated organization as a JSON array.
Returns every active feedback board for the authenticated organization. The response is a flat JSON array — most organizations have a small bounded number of boards, so this endpoint is intentionally not paginated.
Endpoint
POST https://api.productbridge.io/api/external/v1/feedback-boards/list
Arguments
body
api_keystring
RequiredYour organization's public API key. See Authentication.
Returns
A JSON array of feedback board objects. Empty when the organization has no active boards.
Unlike paginated endpoints, this endpoint returns the array directly — no { items, has_next_page, cursor } envelope.
Example request
curl -X POST https://api.productbridge.io/api/external/v1/feedback-boards/list \
-H 'Content-Type: application/json' \
-d '{ "api_key": "pb_YOUR_PUBLIC_API_KEY" }'
const res = await fetch(
"https://api.productbridge.io/api/external/v1/feedback-boards/list",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ api_key: process.env.PRODUCTBRIDGE_API_KEY }),
}
);
if (!res.ok) throw new Error(`HTTP ${res.status}`);
const boards = await res.json();
import os, httpx
resp = httpx.post(
"https://api.productbridge.io/api/external/v1/feedback-boards/list",
json={"api_key": os.environ["PRODUCTBRIDGE_API_KEY"]},
)
resp.raise_for_status()
boards = resp.json()
Example response
[
{
"id": "553c3ef8-b8cd-cd15-01ba-12341234abcd",
"name": "Feature Requests",
"slug": "feature-requests",
"description": "Tell us what you want us to build next.",
"icon_url": null,
"is_voting_enabled": true,
"is_commenting_enabled": true,
"show_post_dates": true,
"created_at": "2026-04-01T08:00:00.000Z"
},
{
"id": "663c3ef8-b8cd-cd15-01ba-22342234bcde",
"name": "Bug Reports",
"slug": "bug-reports",
"description": null,
"icon_url": null,
"is_voting_enabled": false,
"is_commenting_enabled": true,
"show_post_dates": true,
"created_at": "2026-04-15T12:30:00.000Z"
}
]
Errors
| Status | Body | Cause |
|---|---|---|
401 | {"detail":{"error":"invalid api_key"}} | Missing / unknown / inactive api_key. |
See Errors for the full envelope shape.
Was this page helpful?
Last updated 1 week ago
Built with Documentation.AI