Skip to main content
GET
/
tags
List tags
curl --request GET \
  --url https://api.pickfu.com/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "tags": [
      {
        "id": 123,
        "name": "<string>"
      }
    ],
    "pagination": {
      "page": 123,
      "limit": 123,
      "total": 123,
      "totalPages": 123
    }
  }
}

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Query Parameters

query
string

Search filter for tag names

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:25

Number of tags per page

Required range: 1 <= x <= 100

Response

200 - application/json

Default Response

success
boolean
data
object