Skip to content

List all tags

Introduction

This API allows you to retrieve a list of all your tags.

GET https://api.featureos.app/api/v3/tags

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.

Query Parameters

Parameter Default Description
source_typefeature_requestThe tag's source_type should be "feature_request" - for global Post tag or "bucket" - for specific Board tag.
source_id-If the source type is "bucket" pass the specific board's ID.
private-The tags's privacy: "public" or "private"
page1Used to paginate responses.
per_page30Used to limit the responses.

Sample response

[
{
"id": 123,
"slug": "2025-Quarter-1",
"name": "2025 Quarter 1",
"description": "ETC quarter",
"color": "orange",
"private": true,
"source_type": "bucket",
"source_id": 12
},
{
"id": 123,
"slug": "Starred",
"name": "Starred",
"description": "Posted by starred Customer",
"color": "cyan",
"private": null,
"source_type": "feature_request",
"source_id": null
},
...
]