This api is used to get single place. Get a place by sending a GET request along with place_id to the endpoint below.
Response:
{
"success": true,
"data": {
"place": {
"place_id": "PL000000",
"title": "dummy",
"site_id": "ST000000",
"description": "dummy",
"place_type": "Meeting Room",
"address": "dummy",
"city": "England",
"postcode": "123456",
"country": "United Kingdom",
"latitude": "51.58096",
"longitude": "-0.33446",
"timezone": "Europe/London",
"area": null,
"min_people_count": null,
"max_people_count": null,
"booking_method": "automatic",
"available_for_booking": "yes",
"available_from_date": "2025-07-15",
"desk_allocation": null,
"trending": 0,
"status": "Active",
"availability": null,
"time_in": null,
"time_out": null,
"created_at": "2025-07-15T06:35:02.000000Z",
"updated_at": "2025-07-15T06:35:02.000000Z",
"facilities": [
[
"slug" => "wifi",
"name" => "Broadband / wifi"
],
[
"slug" => "coffee-machine",
"name" => "Coffee machine"
],
[
"slug" => "projector",
"name" => "Projector / Display screen"
]
],
"images": [
"https://example.com/images/front.jpg"
],
"availabilities": [
{
"day": "monday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "tuesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "wednesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "thursday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "friday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "saturday",
"time_in": "",
"time_out": ""
},
{
"day": "sunday",
"time_in": "",
"time_out": ""
}
],
"charges": [
{
"type": "hours",
"amount": "50.00",
"discount": "0.00"
},
{
"type": "full day",
"amount": "400.00",
"discount": "0.00"
},
{
"type": "half day",
"amount": "200.00",
"discount": "0.00"
}
]
},
}
"message": "Place fetched successfully"
}