GET /interests - List currently available interests for user choice
| Parameter | Parameter Type | Data Type |
|---|---|---|
| api-key | header | string Required |
| Authorization | header | string Required |
invalid HTTP_API_KEYNot authenticated200 - Success401 - Unauthorized actioncurl --request GET \
--url https://api-dev.radiozu.ro/v1/interests \
--header 'Accept: application/json' \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'api-key: API_KEY'
An array containing multiple interest objects. One interest object is described by:
id - interest idname - interest name{
"data": [
{
"id": 1,
"name": "Vedete"
},
{
"id": 2,
"name": "Muzica"
}
]
}