> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hibonsai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Read Resources

> Read a resource by URI

## `resources/read`

Read a resource by URI.

## Parameters

<ParamField body="uri" type="string" required>
  URI of the resource to read. Use the format `ui://widget/{widget-name}.html` for widget resources. Available URIs can be retrieved using `resources/list`.
</ParamField>

## Request

<RequestExample>
  ```json theme={null}
  {
    "jsonrpc": "2.0",
    "id": 5,
    "method": "resources/read",
    "params": {
      "uri": "ui://widget/shop-widget.html"
    }
  }
  ```
</RequestExample>

## Response

Returns the resource content (HTML for widgets).
