Skip to main content
POST
/
v1
/
intent
/
topics
/
compare
Compare trends across multiple topics
curl --request POST \
  --url https://api.aws53.cloud/v1/intent/topics/compare \
  --header 'Content-Type: application/json' \
  --data '
{
  "topicIds": [
    123
  ]
}
'
{
  "data": [
    {
      "topicId": 123,
      "topicName": "<string>",
      "data": [
        {
          "date": "<string>",
          "uniqueAudience": 123,
          "totalSignals": 123,
          "avgScore": 123,
          "highAudience": 123,
          "mediumAudience": 123,
          "lowAudience": 123
        }
      ]
    }
  ]
}

Body

application/json
topicIds
integer[]
required
Required array length: 1 - 10 elements

Response

200 - application/json

Comparison data

data
object[]
required