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 |
Request
https://premium.aiera.com/api/topics?search=covid&size=5
Response
[
{
"topic_id": "11",
"topic": "COVID"
},
{
"topic_id": "5664943",
"topic": "COVID Wave 2"
},
{
"topic_id": "99438592",
"topic": "covidand"
},
{
"topic_id": "110548351",
"topic": "COVID De Novo"
},
{
"topic_id": "115587496",
"topic": "COVID-19 ESG Program"
}
]
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"})