**Version: 202601**

# Get card details

**GET** `/openapi/2026-01/themes/edit-sessions/:oseid/files/:doc_id/sections/:section_id`

Render the specified card with its current config and return the rendered HTML, the card config, and its configuration definitions, without changing any data. Global cards such as the header and footer are also supported.

## Request

**Path Parameters**

- `oseid` string (required)

  Edit session ID
- `doc_id` string (required)

  Document (template file) ID
- `section_id` string (required)

  Section (card) ID to render

**Query Parameters**

- `template_name` string

  Optional current page template name; scopes supported data source types

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `data` object

    Rendered section config and card items

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "data": {}
  }
}
```
