get
https://{subdomain}.myshoplaza.com/openapi/2025-06/pages/
Retrieve details of a specific page using its unique identifier.
Requiresread_shop_navigationaccess scope. More access scope
The Get Page Details API retrieves the detailed information of a specific page by its unique ID.
This API is especially useful for:
- Fetching the complete content and metadata of a page for editing or viewing.
- Debugging or auditing page details.
- Automating workflows that require specific page information.
Request Parameters
Public Request Parameters
Path Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
id | string | Yes | The ID of the page. | 15979 |
Response Explanation
Public Response Parameters
Successful Response
| Field | Type | Description | Example |
|---|---|---|---|
code | string | "success" | Status code of the response |
message | string | Descriptive message of the response | |
data.id | int | Unique ID of the page. | 15979 |
data.title | string | Title of the page. | "Test" |
data.content | string | HTML content of the page. | "<p>Welcome to my page!</p>" |
data.status | int | Status of the page (1 for active). | 1 |
data.created_at | string | Timestamp of when the page was created. | "1714377813" |
data.updated_at | string | Timestamp of the last update. | "1714377813" |
data.url | string | URL of the page. | "/pages/test1" |
data.meta_title | string | SEO title of the page. | "Test" |
data.meta_keyword | string | SEO keywords for the page. | "" |
data.meta_description | string | SEO description of the page. | "Welcome to my page!" |
data.independent_seo | boolean | Whether SEO is managed independently. | false |
Error Response
| Field | Type | Example | Description |
|---|---|---|---|
code | string | InvalidParameter | Error http message |
message | string | `` | Error message |
