Topics
Find Topics
Find relevant topics
GET /topics
Parameter | Type | DataType | Description |
---|---|---|---|
search | query | string | Search term to look for |
size | query | integer | The number of matches to return (max: 100) |
from_index | query | integer | The index to start returning from, combine with size for paging |
Response
[
{
"topic_id": "11",
"topic": "COVID"
}
]
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/topics/?search=TERM' \
--header 'X-API-Key: xxx'
Python
import requests
requests.get("https://premium.aiera.com/api/topics/?search=TERM", headers={"X-API-Key": "xxx"})