---
title: "Fetch hotel details"
method: POST
path: "/api/actions/fetch"
---

# Fetch hotel details

`POST /api/actions/fetch`

Get detailed information about a specific hotel, including pricing if dates are provided

## Request body

- FetchRequest
  - `hotelId` string, required — Unique hotel identifier
  - `checkin` string, date
  - `checkout` string, date
  - `adults` integer
  - `currency` string

## Response `200`

Hotel details

- HotelDetails
  - `id` string
  - `name` string
  - `description` string
  - `stars` integer
  - `rating` number
  - `address` string
  - `images` string[]
  - `facilities` string[]
  - `pricing` object

## Other responses

- `401` — Unauthorized - invalid or missing token
- `404` — Hotel not found

---

[API](https://skmtc.net/moodtrip/apis/moodtrip-actions-api.md) · [All operations](https://skmtc.net/moodtrip/apis/moodtrip-actions-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/moodtrip/moodtrip-actions-api/versions/61ea1b001dfa/schema)
