List app embeds
GET/openapi/2026-01/themes/apps
List the embed cards (app embeds) provided by the store's installed apps, plus injected script tags.
Request
Query Parameters
Max number of app-embed blocks to return, default no cap. Does not affect script_tag_apps
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- Array [
- ]
- ]
error code
error message
data object
App-embed blocks provided by the store's installed apps; each item is a free-form JSON object
script_tag_apps object[]
Script tags grouped by app
app_info object
App metadata
App internal ID
App icon URL
App UID (client ID)
App name (internal)
App display title
App entry link (relative path)
App subtitle / short description
App installation time (RFC3339)
script_tags object[]
Script tags owned by this app
Script tag UUID
Script tag name
Application ID that owns this script tag
Source: custom (merchant-defined) or public (operations platform)
Target device: all, mobile, pc
Display scope (which pages)
Script event type
Script content or URL
Status: open (active) or close (inactive)
JS loading position
Store ID owning the script tag
Target store domain (empty = all stores)
Effective period, e.g. permanent
Environment, e.g. staging / production
Excluded page IDs
Weight for ordering (string form)
Start time, unix seconds string (0 = none)
End time, unix seconds string (0 = none)
Created time
Updated time
{
"code": "string",
"message": "string",
"data": {
"app_embeds": [
{}
],
"script_tag_apps": [
{
"app_info": {
"id": 0,
"icon": "string",
"uid": "string",
"name": "string",
"title": "string",
"link": "string",
"subtitle": "string",
"installed_at": "string"
},
"script_tags": [
{
"id": "string",
"name": "string",
"app_id": "string",
"source": "string",
"device": "string",
"display_scope": "string",
"event_type": "string",
"src": "string",
"status": "string",
"position": "string",
"store_id": "string",
"store_domain": "string",
"event_period": "string",
"env": "string",
"exclude_ids": "string",
"weight": "string",
"started_at": "string",
"ended_at": "string",
"created_at": "string",
"updated_at": "string"
}
]
}
]
}
}