GET : List Experiences
This endpoint lets you retrieve all experiences use throughout Piloty
All Experiences elements
GET
https://api.piloty.fr/experiences
{
"total": 121,
"data":[
{
"id": "627d1a8772f9aba0dcd08496",
"name": "XP > 2 years",
"ref": "more_than_2_years",
"content": {
"translation": {
"en": "XP > 2 years",
"fr": "> 2 ans"
}
}
},
{
"id": "627d1a4372f9aba0dcd07510",
"name": "XP < 1 year",
"ref": "less_than_1_year",
"content": {
"translation": {
"en": "XP < 1 year",
"fr": "< 1 an"
}
}
},
{...},
]
}
Request example
curl -X GET -G "https://api-piloty.fr/experiences" \
-H "Authorization: Bearer PILOTY_TOKEN" \
Last updated