The following sections detail all of the object formats used in our API response.
Search Info
Name | Type | Comment |
---|---|---|
count | Integer | The total number of trips, including full trips (those with no remaining seats). |
full_trip_count | Integer | The total number of full trips (those with no remaining seats). |
Trip
Name | Type | Comment |
---|---|---|
link | String | The URL to redirect to the trip details page on the BlaBlaCar website. |
waypoints | Array of Waypoints | The waypoints of the trip. |
price | Price Object | The price information of the trip. |
vehicle | Vehicle Object | The vehicle information for the trip. |
distance_in_meters | Integer | The distance between the departure and the arrival in meters. |
duration_in_seconds | Integer | The duration between the departure and the arrival in seconds. |
Waypoint
Name | Type | Comment |
---|---|---|
date_time | String | The departure offset date time in local time of the departure. |
place | Place Object | The details of the place. |
Place
Name | Type | Comment |
---|---|---|
city | String | The city of the place. |
address | String | The address of the place. |
latitude | Double | The latitude of the point (truncated at six decimal places). |
longitude | Double | The longitude of the point (truncated at six decimal places). |
country_code | String | The country of the place. |
Price
Name | Type | Comment |
---|---|---|
amount | String | The total price to pay for the trip. |
currency | String | The currency applied to the price. (ISO_4217 format) |
Vehicle
Name | Type | Comment |
---|---|---|
make | String | (Optional) The make of the vehicle. |
model | String | (Optional) The model of the vehicle. |