GET /function_titles¶
This endpoint allows you to retrieve a list of function titles for a given keyword
https://{{ env }}.academiclabs.com/api/v1/function_titles
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/function_titles?q=dev&limit=5" \ --header "Content-Type: application/json" \ --header "Authorization: Bearer Your.API.Key-HERE"
Responses¶
application/json
200¶
[ { "id": 64, "name": "Developer" }, { "id": 65, "name": "Development Technologist" }, { "id": 276, "name": "Web Developer" }, { "id": 245, "name": "Software Developer" }, { "id": 18, "name": "Business Developer" } ]
400¶
{ "errors": [ "Parameter q not found" ] }