v1

latestOpenAPI 3.0.32026-07-26710398.3 KB
Project

List Tags

List the tags of a project. Tags include user-created tags and Peec-managed system tags (is_system=true). Each tag carries a group: for system tags this is the mutually-exclusive dimension (branding or intentType); for user tags it is the user-defined group name (or null). Pass group to filter to a single user-defined group. System tags cannot be edited or deleted.

get/tags

Query parameters

project_idstring

Required if using a company api key

Example:or_f45b94ba-5e35-4982-93ed-285e72ee14eb
limitnumber
offsetnumber
groupstring

Filter to tags in this user-defined group (matches the group column exactly).

Example:persona

Response

Success

total_countnumber required

Total number of matching tags, ignoring pagination

totalCountnumber required

Total number of matching tags, ignoring pagination

Example response

{
  "data": [
    {
      "id": "tg_23abec5b-100a-4261-9ee7-1effe68f0149",
      "name": "SEO",
      "group": "branding"
    }
  ],
  "total_count": 42,
  "totalCount": 42
}