Skip to main content
GET
/
post
/
tag
Get all post tags
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/post/tag \
  --header 'X-Team-ApiKey: <api-key>'
[
  {
    "id": "post_tag_leBDiFdrUnRmRz4nfopSrv",
    "name": "Summer Sale",
    "created": "2023-11-07T05:31:56Z",
    "updated": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Response

✅ Tags retrieved successfully

id
string
Example:

"post_tag_leBDiFdrUnRmRz4nfopSrv"

name
string

Tag name

Example:

"Summer Sale"

created
string<date-time>

Date and time when tag was created

updated
string<date-time>

Date and time when tag was updated

I