// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/tags?limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'
GET
method
/tags
path

Query Parameters

Below are the query parameters available for customizing the response:
id
string | undefined
Identifier for a specific tag.
sortBy
(slug | createdAt):(asc | desc)
Sorting criteria and direction, by ‘slug’ or ‘createdAt’.
limit
1-100
default:"10"
Defines the max number of tags to retrieve in one request.
page
1-n
default:"1"
Specifies the page number for pagination.
// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/tags?limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'