Skip to main content
GET
/
v1
/
numbers
/
tags
cURL
curl --request GET \
  --url https://api.fluents.ai/v1/numbers/tags \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    "sales",
    "support"
  ],
  "page": 123,
  "size": 123,
  "has_more": true,
  "total": 123,
  "total_is_estimated": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.fluents.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Query Parameters

page
number
required
size
number
required
filters
string
required

Response

200 - application/json
items
string[]
required
Example:
["sales", "support"]
page
number
required
size
number
required
has_more
boolean
required
total
number
required
total_is_estimated
boolean
required