Skip to main content
GET
/
v1
/
tags
List Tags
curl --request GET \
  --url http://api.stuut.ai/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "<string>",
      "object": "<string>",
      "id": "<string>",
      "color": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "modified_at": "2023-11-07T05:31:56Z",
      "rule_condition": {}
    }
  ],
  "current_page": 0,
  "total_records": 0,
  "next_page": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

data
object[]
current_page
integer
default:0

The current page.

total_records
integer
default:0

Total number of records.

next_page
integer | null

The next page, if one exists.