Skip to content

GET /research_interests

This endpoint allows you to retrieve a list of research interests for a given keyword

https://{{ env }}.academiclabs.com/api/v1/research_interests

Headers

Value Type Required Description
Authorization string required Your API_KEY received by AcademicLabs

Query String

Value Type Required Description
q string required A string based value for a given keyword
limit integer optional Number of results that will be fetched (default: 20)

Example

curl --location --request GET "https://sandbox.academiclabs.com/api/v1/research_interests?q=bel" \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer Your.API.Key-HERE"

Responses

application/json

200

[
    {
        "id": 42456,
        "name": "Humans"
    },
    {
        "id": 42462,
        "name": "Humanism"
    },
    {
        "id": 42463,
        "name": "Humanities"
    },
    {
        "id": 53284,
        "name": "Human Body"
    },
    {
        "id": 42461,
        "name": "Human Rights"
    }
]

400

{
    "errors": [
        "Parameter q not found"
    ]
}