These docs are for v1.0. Click to read the latest docs for v2.0.

Retrieving Tags

Listing the Tags within your Project.

The following call will list the Tags in the Project with ID 398748937:
(Click here to learn how to get your Project ID)

curl -X GET https://api.brandwatch.com/projects/398748937/tags

The response will look like this:

{
  "resultsTotal": -1,
  "resultsPage": -1,
  "resultsPageSize": -1,
  "results": [
    {
      "id": 3897282,
      "name": "Celebrities"
    },
    {
      "id": 3472876,
      "name": "Journalists"
    },
    {
      "id": 9879833,
      "name": "Bloggers"
    },
    {
      "id": 7673322,
      "name": "Members of the public"
    }
  ]
}

You can then use a Tag id when filtering or breaking down Mention calls.