Discussions

Ask a Question
Back to All

Availability and prices

When I send a request to get availability (https://api.lodgify.com/v2/availability?start=2025-10-25&end=2025-10-27) I get this response:

[
{
"user_id": ...,
"property_id": ...,
"room_type_id": ...,
"periods": [
{
"start": "2025-10-25",
"end": "2025-10-27",
"available": 1,
"closed_period": null,
"bookings": [],
"channel_calendars": []
}
]
},
{
"user_id": ...,
"property_id": ...,
"room_type_id": ...,
"periods": [
{
"start": "2025-10-25",
"end": "2025-10-27",
"available": 1,
"closed_period": null,
"bookings": [],
"channel_calendars": []
}
]
}
]

Where are prices? This is very limited.

I need to list on a direct booking website available listings and their rates. How to fetch rates?

Your direct booking websites use internal api calls and your api responds with prices.

What should I do? Maybe call another endpoint?