Skip to main content
GET
/
tags
List all tags
curl --request GET \
  --url https://alfaone.app/api/v1/tags \
  --header 'x-api-key: <api-key>'
{
  "tags": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "color": "#6366f1",
      "description": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 87,
    "totalPages": 5
  }
}

Documentation Index

Fetch the complete documentation index at: https://v4-docs.alfaone.app/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Format: ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Query Parameters

page
integer
default:1

Page number (1-indexed)

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

Number of items per page (max 100)

Required range: 1 <= x <= 100
sort
enum<string>
default:name

Field to sort by

Available options:
name,
created_at,
updated_at
order
enum<string>
default:asc

Sort direction

Available options:
asc,
desc

Response

Successful response

tags
object[]
pagination
object