GET/shop/list

Get All Shops

This endpoint retrieves details of all the review shops created by the user. It also allows you to configure the following:
GET/shop/list

Optional Fields

  • shopsPerPage
  • pageNumber

Parameter Details

NameInTypeRequiredDescription
shopsPerPagequeryintegerOptionalThe number of items to display in a page
pageNumberqueryintegerOptionalIndicates the current page number

Responses

StatusMeaningDescriptionSchema
200OKshop details displayreviewsShopGetAllResp
400Bad RequestBad RequestNone
401UnauthorizedAuthorization FailedNone
500Internal Server ErrorInternal Server ErrorNone

Example Request

# You can also use wget
curl -X GET /shop/list \
  -H 'Accept: application/json' \
  -H 'Authorization: API_KEY'

Example responses

200 Response
[
  {
    "totalRecords": 2,
    "fetchedRecords": 2,
    "totalPages": 1,
    "currentPage": 1,
    "pageSize": 10,
    "shops": [
      {
        "shopId": 20,
        "hotelCodes": [
          1,
          123
        ],
        "sourceCodes": [
          1,
          283
        ],
        "shopName": "Abc",
        "userId": 1,
        "userName": "reviews@ai.com",
        "createdDate": "2025-05-06T14:15:22Z",
        "modifiedDate": "2025-05-06T14:15:22Z",
        "status": 1,
        "shopType": 1
      }
    ]
  }
]

Need Support?

Our team is here to help you integrate and make the most of our APIs. Get in touch for technical support, custom solutions, or any questions.