TagsList

List tags

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

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

Endpoint

POST https://api.productbridge.io/api/external/v1/tags/list

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

Returns

A JSON array of tag objects. Empty when the organization has no active tags.

Example request

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

Example response

[
  {
    "id": "773c3ef8-b8cd-cd15-01ba-tag00000001",
    "name": "mobile",
    "code": "mobile",
    "color": "#10B981",
    "show_on_feedback": true,
    "show_on_roadmap": true,
    "created_at": "2026-04-12T08:30:11.000Z"
  },
  {
    "id": "773c3ef8-b8cd-cd15-01ba-tag00000002",
    "name": "regression",
    "code": "regression",
    "color": "#EF4444",
    "show_on_feedback": true,
    "show_on_roadmap": false,
    "created_at": "2026-05-01T14:20:00.000Z"
  }
]

Errors

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

See Errors for the full envelope shape.