Roadmap boardsList

List roadmap boards

Return every active roadmap board for the authenticated organization as a JSON array.

Returns every active roadmap board for the authenticated organization. The response is a flat JSON array — most organizations have a small bounded number of roadmap boards, so this endpoint is intentionally not paginated.

Endpoint

POST https://api.productbridge.io/api/external/v1/roadmap-boards/list

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

Returns

A JSON array of roadmap board objects. Empty when the organization has no active roadmap boards.

Example request

curl -X POST https://api.productbridge.io/api/external/v1/roadmap-boards/list \
  -H 'Content-Type: application/json' \
  -d '{ "api_key": "pb_YOUR_PUBLIC_API_KEY" }'

Example response

[
  {
    "id": "553c3ef8-b8cd-cd15-01ba-roadmap0001",
    "name": "Product Roadmap",
    "slug": "product-roadmap",
    "description": "Public-facing roadmap for our customer-facing product.",
    "icon_url": null,
    "created_at": "2026-04-01T08:00:00.000Z"
  }
]

Errors

StatusBodyCause
401{"detail":{"error":"invalid api_key"}}Missing / unknown / inactive api_key.

See Errors for the full envelope shape.