Skip to main content
GET
/
api
/
group_tags
curl --location --request GET 'https://api.explo.co/api/group_tags/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
  "success": 1,
  "group_tags": [
    {
      "name": "marketing"
    },
    {
      "name": "designer"
    },
    {
      "name": "engineers"
    },
    {
      "name": "sales"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.explo.co/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint gets all of your group tags. This list will be filtered to the group tags your API token has access to.

Response

success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
group_tags
object[]
The contents of each group tag object
curl --location --request GET 'https://api.explo.co/api/group_tags/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
  "success": 1,
  "group_tags": [
    {
      "name": "marketing"
    },
    {
      "name": "designer"
    },
    {
      "name": "engineers"
    },
    {
      "name": "sales"
    }
  ]
}