FETCH Inventory from Aiosell

FETCH Inventory from Aiosell

API Endpoint URLhttps://live.aiosell.com/api/v2/cm/data/{PARTNER_ID}

Purpose:
This API allows third-party systems to fetch Inventory for hotels connected via Aiosell’s Channel Manager

Method: POST

DATA:

{
    "type"     : "inventory",
    "hotelCode": "{HOTEL_CODE}",
    "startDate": "2025-07-20",
    "endDate"  : "2025-07-22"
}

RESPONSE (from Aiosell):

{
    "hotelCode": "{HOTEL_CODE}",
    "updates": [
        {
            "startDate": "2025-07-22",
            "endDate": "2025-07-22",
            "rooms": [
                {
                    "available": 10,
                    "roomCode": "45000437057"
                },
                {
                    "available": 22,
                    "roomCode": "45000437056"
                }
            ]
        },
        {
            "startDate": "2025-07-20",
            "endDate": "2025-07-20",
            "rooms": [
                {
                    "available": 10,
                    "roomCode": "45000437057"
                },
                {
                    "available": 24,
                    "roomCode": "45000437056"
                }
            ]
        },
        {
            "startDate": "2025-07-21",
            "endDate": "2025-07-21",
            "rooms": [
                {
                    "available": 10,
                    "roomCode": "45000437057"
                },
                {
                    "available": 23,
                    "roomCode": "45000437056"
                }
            ]
        }
    ]
}
    • Related Articles

    • Aiosell REST API Documentation - FETCH Rates, Inventory & Reservation

      This guide is designed for 3rd Party looking to integrate with Aiosell Channel Manager and FETCH details. Inventory FETCH POST Description: FETCH room availability (inventory) from Aiosell for various room types. Reference: ...
    • FETCH Rates from Aiosell

      API Endpoint URL: https://live.aiosell.com/api/v2/cm/data/{PARTNER_ID} Purpose: This API allows third-party systems to fetch rates of hotels connected via Aiosell’s Channel Manager. DATA: { "type" : "rates", "hotelCode": "{HOTEL_CODE}", "startDate": ...
    • FETCH Reservations from Aiosell

      API Endpoint URL: https://live.aiosell.com/api/v2/cm/data/{PARTNER_ID} Purpose: This API allows third-party systems to fetch reservation and booking details for hotels connected via Aiosell’s Channel Manager Method: POST DATA: { "type" : ...
    • Inventory Push from PMS to Aiosell

      API Endpoint URL: https://live.aiosell.com/api/v2/cm/update/sample-pms Purpose This API is designed to allow Property Management Systems (PMS) to push updated room inventory data to Aiosell Channel Manager. This ensures accurate availability across ...
    • Inventory POST from Aiosell to 3rd Party

      API Endpoint URL: BASE URL TO BE SHARED BY OTA Purpose This API allows Aiosell to communicate inventory updates, including availability and restrictions, to third-party OTAs (Online Travel Agencies). It ensures inventory consistency across platforms. ...