GET /api/v1/tagspersonal for the personal workspace, or omit to use the active workspace from your settings.curl "https://blacktwist.app/api/v1/tags?teamId=personal" \
-H "Authorization: Bearer bt_api_..."{
"tags": [
{
"id": "tag_abc123",
"name": "Marketing",
"color": "#F97316",
"teamId": null,
"createdBy": "user_xyz789",
"createdAt": "2026-01-15T10:00:00.000Z",
"updatedAt": "2026-01-15T10:00:00.000Z"
}
]
}GET /api/v1/posts/:threadId/tagscurl https://blacktwist.app/api/v1/posts/abc123xyz/tags \
-H "Authorization: Bearer bt_api_..."{
"threadId": "abc123xyz",
"tags": [
{
"id": "tag_abc123",
"name": "Marketing",
"color": "#F97316"
}
]
}PUT /api/v1/posts/:threadId/tagscurl -X PUT https://blacktwist.app/api/v1/posts/abc123xyz/tags \
-H "Authorization: Bearer bt_api_..." \
-H "Content-Type: application/json" \
-d '{
"tagNames": ["Marketing", "Newsletter"]
}'{
"threadId": "abc123xyz",
"tags": [
{
"id": "tag_abc123",
"name": "Marketing",
"color": "#F97316"
},
{
"id": "tag_def456",
"name": "Newsletter",
"color": "#3B82F6"
}
]
}BlackTwist
Give your social a twist.
© Copyright 2026 BlackTwist. All rights reserved.