GET

List Contact Tags

Retrieves all user tags and their associated contact counts.

HTTP Endpoint

GEThttps://api-wa.hidessh.com/api/v1/contacts/tags

Authentication

This endpoint requires Bearer authentication via your secret API Key.
Header KeyValueRequired
AuthorizationBearer <your_api_key>Required
Content-Typeapplication/jsonRequired
No request parameters required for this endpoint.

Code Examples

request.sh
curl -X GET "https://api-wa.hidessh.com/api/v1/contacts/tags" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Formats

List of tags.

application/json • 200 OK
{
  "success": true,
  "payload": [
    { "id": "01M1TAG01", "name": "VIP", "total_contacts": 142 },
    { "id": "01M1TAG02", "name": "Retail", "total_contacts": 850 }
  ]
}