---
title: "Get room details"
method: GET
path: "/api/agents/{agentId}/rooms/{roomId}"
tags: ["rooms", "agents"]
---

# Get room details

`GET /api/agents/{agentId}/rooms/{roomId}`

Retrieves details about a specific room

## Path parameters

- `agentId` string, uuid, required
- `roomId` string, uuid, required

## Response `200`

Room details

- object
  - `success` boolean
  - `data` Room
    - `id` string, uuid — Unique identifier for the room
    - `name` string — Name of the room
    - `source` string — Source of the room
    - `worldId` string, uuid — ID of the world this room belongs to
    - `entities` object[] — Entities in this room
      - `id` string, uuid
      - `name` string

## Other responses

- `400` — Invalid agent ID or room ID
- `404` — Agent or room not found
- `500` — Error retrieving room

---

[API](https://skmtc.net/elizaos/apis/eliza-os-api.md) · [All operations](https://skmtc.net/elizaos/apis/eliza-os-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elizaos/eliza-os-api/versions/f43280bfdb0c/schema)
