**Version: 202601**

# Get page-builder block details

**GET** `/openapi/2026-01/themes/page-builder/blocks`

Batch-fetch page-builder blocks by `source_ids`: each returns its name, full block `type`, and default `settings` — what you need to place the card on a page.

## Request

**Query Parameters**

- `event_type` string

  Event type of the blocks to look up; use `page-builder` for page-builder blocks
- `source_ids` string

  Source IDs, comma-separated, e.g. `"global-654263218792825795"`

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `blocks` object

    Page-builder blocks keyed by source ID; each has `name`, `type`, `settings`, `source`

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