Sectors
This endpoint lets you access to the list of all active sectors.
GET
https://www.welcomekit.co/api/v1/external/sectors
Query Parameters
Name
Type
Description
per_page
integer
Page offset
page
integer
Number of sectors per page
[
{
"id": "2",
"fullname": {
"es": "TecnologĂa > Big data",
"en": "Tech > Big data",
"fr": "Tech > Big data"
},
"parent": {
"es": "TecnologĂa",
"en": "Tech",
"fr": "Tech",
"_id": "1"
},
"names": {
"es": "Big data",
"en": "Big data",
"fr": "Big data"
},
"reference": "big_data"
},
{
"id": "3",
"fullname": {
"es": "TecnologĂa > Software",
"en": "Tech > Software",
"fr": "Tech > Logiciels"
},
"parent": {
"es": "TecnologĂa",
"en": "Tech",
"fr": "Tech",
"_id": "1"
},
"names": {
"es": "Software",
"en": "Software",
"fr": "Logiciels"
},
"reference": "software"
}
...
]
Request example
curl -X GET -G "https://www.welcomekit.co/api/v1/external/sectors" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer WK_API_KEY"
Last updated
Was this helpful?