Skip to main content
GET
/
api
/
v1
/
analytics
/
tags
Get conversation tag analytics
curl --request GET \
  --url https://api.g-tateth.com/api/v1/analytics/tags \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": [
    {
      "tag": "billing",
      "count": 142,
      "percentage": 18.5
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.g-tateth.com/llms.txt

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

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer sk_live_... (production) or Bearer sk_test_... (staging). Obtain keys from Settings → Developer Console.

Query Parameters

startDate
string<date-time>

Start of date range (ISO 8601)

Example:

"2026-04-01T00:00:00Z"

endDate
string<date-time>

End of date range (ISO 8601)

Example:

"2026-04-30T23:59:59Z"

userId
string

Scope results to a specific agent

tag
string

Filter to a single tag

Response

Tag analytics data

success
boolean
Example:

true

data
object[]