API Documentation
Clients' login
Direct Event Data Serving
Event Data Fetching and Storage
Client Data
Dynamic search
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": 100000,
"wanderId": 100000,
"name": "PLK en concert",
"startDate": "2024-03-03 06:08:23.222 +0100",
"endDate": "2024-03-04 06:08:23.222 +0100",
"hasEndDateNotReliable": true,
"lowestPrice": 0,
"highestPrice": 200,
"description": "Un super concert de PLK à l'accor arena !",
"image": "<string>",
"squareImage": "<string>",
"rectangleImage": "<string>",
"place": {
"id": 10,
"name": "Accor Arena",
"address": {
"lng": 2.123909,
"lat": 42.32981038,
"street": "Rue Saint-Jacques",
"city": "Paris",
"postalCode": 75005,
"country": "France"
}
},
"averageGrade": 5,
"totalGrades": 1,
"categories": [
{
"id": 1,
"name": "painting",
"mainCategory": "expo",
"traductionFR": "peinture",
"traductionEN": "painting",
"icon": "<string>"
}
],
"score": 123
}
}
]
Authorizations
It is the "access_token" returned after login
Query Parameters
The coordinates [lng, lat] around which you are searching
The coordinates [lng, lat] around which you are searching
events
, places
, performers
Response
Event object returned with '/search'
100000
100000
"PLK en concert"
"2024-03-03 06:08:23.222 +0100"
"2024-03-04 06:08:23.222 +0100"
The lowest price for the event in euros. If it's null, we don't know the price
0
The highest price for the event in euros. If it's null, we don't know the price
200
"Un super concert de PLK à l'accor arena !"
10
"Accor Arena"
2.123909
42.32981038
"Rue Saint-Jacques"
"Paris"
75005
"France"
During integration, we also retrieve all the comments/grades made about the event. ‘AverageGrade’ is simply the average of these ratings.
5
During integration, we also retrieve all the comments/grades made about the event. 'nbOfGrades' is simply the number of these ratings.
1
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.
1
If it's null, it's a main category, otherwise it's a sub-category of the main category.
"painting"
"expo"
"peinture"
"painting"
Search score
Was this page helpful?
curl --request GET \
--url https://www.wander-service.fr/api/clients/v2/search \
--header 'Authorization: Bearer <token>'
[
{
"event": {
"id": 100000,
"wanderId": 100000,
"name": "PLK en concert",
"startDate": "2024-03-03 06:08:23.222 +0100",
"endDate": "2024-03-04 06:08:23.222 +0100",
"hasEndDateNotReliable": true,
"lowestPrice": 0,
"highestPrice": 200,
"description": "Un super concert de PLK à l'accor arena !",
"image": "<string>",
"squareImage": "<string>",
"rectangleImage": "<string>",
"place": {
"id": 10,
"name": "Accor Arena",
"address": {
"lng": 2.123909,
"lat": 42.32981038,
"street": "Rue Saint-Jacques",
"city": "Paris",
"postalCode": 75005,
"country": "France"
}
},
"averageGrade": 5,
"totalGrades": 1,
"categories": [
{
"id": 1,
"name": "painting",
"mainCategory": "expo",
"traductionFR": "peinture",
"traductionEN": "painting",
"icon": "<string>"
}
],
"score": 123
}
}
]