curl --request GET \
--url https://www.wander-service.fr/api/clients/v2/search \
--header 'Authorization: Bearer <token>'[
{
"event": {
"id": 123,
"wanderId": 123,
"name": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"hasEndDateNotReliable": true,
"lowestPrice": 123,
"highestPrice": 123,
"description": "<string>",
"image": "<string>",
"squareImage": "<string>",
"rectangleImage": "<string>",
"place": {
"id": 123,
"name": "<string>",
"address": {
"lng": 123,
"lat": 123,
"street": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>"
}
},
"averageGrade": 123,
"totalGrades": 123,
"categories": [
{
"id": 123,
"name": "<string>",
"mainCategory": "<string>",
"traductionFR": "<string>",
"traductionEN": "<string>",
"icon": "<string>"
}
],
"score": 123
}
}
]Search for event or place or performer. You can use it for a searchbar.
curl --request GET \
--url https://www.wander-service.fr/api/clients/v2/search \
--header 'Authorization: Bearer <token>'[
{
"event": {
"id": 123,
"wanderId": 123,
"name": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"hasEndDateNotReliable": true,
"lowestPrice": 123,
"highestPrice": 123,
"description": "<string>",
"image": "<string>",
"squareImage": "<string>",
"rectangleImage": "<string>",
"place": {
"id": 123,
"name": "<string>",
"address": {
"lng": 123,
"lat": 123,
"street": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>"
}
},
"averageGrade": 123,
"totalGrades": 123,
"categories": [
{
"id": 123,
"name": "<string>",
"mainCategory": "<string>",
"traductionFR": "<string>",
"traductionEN": "<string>",
"icon": "<string>"
}
],
"score": 123
}
}
]It is the "access_token" returned after login
The coordinates [lng, lat] around which you are searching
The coordinates [lng, lat] around which you are searching
events, places, performers Successful operation
Event object returned with '/search'
Show child attributes
The lowest price for the event in euros. If it's null, we don't know the price
The highest price for the event in euros. If it's null, we don't know the price
Show child attributes
During integration, we also retrieve all the comments/grades made about the event. ‘AverageGrade’ is simply the average of these ratings.
During integration, we also retrieve all the comments/grades made about the event. 'nbOfGrades' is simply the number of these ratings.
It's an array of all the categories of the event. Some of these objects are ‘sub-categories’ and others are 'main categories'. For a main category, ‘name’ is null, while for a sub-category, ‘name’ is not null and ‘mainCategory’ has the same value as the main category.
Show child attributes
Search score
Was this page helpful?