Browse documentation
GET

Accor Hotel Details API

Get the full public content record for one Accor property.

Overview

Use this endpoint for the property profile Accor publishes on all.accor.com: identity and brand, descriptions, contact details, address and coordinates, ratings and a review preview, accessibility, payment methods, named accommodations, facilities, media, and room inventory. Match accommodations[].code to the accommodation codes returned by the Rooms endpoint.

Endpoint URL

GET https://api.stayapi.com/v1/accor/hotel/details

Parameters

ParameterTypeRequiredDescription
hotel_idstringRequiredAccor hotel id from Search or URL to Hotel ID, for example 2179.

Response structure

  • Identity: hotel_id, name, web_url, brand, lodging, and currency
  • Content: destination, general and SEO descriptions, manager message, advantages, labels, and certifications
  • Location: structured address, coordinates, geo code, contact details, and check-in/check-out times
  • Reputation: score, review count, rating origin, stars, and review_preview
  • Rooms: named accommodations with descriptions, photos, features, occupancy, bedding, classification, and floor area
  • Facilities: breakfasts, fitness centers, pools, restaurants, bars, and spas
  • Operations: accessibility, payment methods, media totals, room occupancy, and connecting/family-room inventory

Join details to live rates

The Rooms endpoint returns accommodation codes. Join those codes to accommodations[].code here to attach human-readable room names, descriptions, bedding, floor area, and photos to each live rate plan.

Errors

Errors use RFC 7807 Problem Details. Unknown hotel ids return 404 with provider: "accor" and product: "details"; Accor upstream failures return 502.

Related endpoints

Amenities

Get the full service hierarchy, fee flags, and room inventory.

View Documentation →

Hotel Reviews

Retrieve individual guest reviews and hotel responses.

View Documentation →
Request
curl -X GET "https://api.stayapi.com/v1/accor/hotel/details?hotel_id=2179" \
  -H "X-API-Key: YOUR_API_KEY"
Response
{
  "success": true,
  "hotel_id": "2179",
  "name": "ibis Cavaillon Luberon",
  "brand": { "code": "IBI", "name": "ibis" },
  "rating": { "score": 4.2, "review_count": 692, "origin": "ALL" },
  "address": { "city": "Cavaillon", "country_code": "FR" },
  "location": { "latitude": 43.819, "longitude": 5.038 },
  "accommodations": [
    { "code": "ROO", "name": "Standard Room", "is_accessible": false }
  ],
  "facilities": { "restaurants": [], "bars": [], "pools": [] },
  "inventory": { "connecting_rooms": 0, "family_rooms": 0 }
}