Skip to main content
GET
/
v1
/
workspace
/
website
/
{website_id}
/
pages
/
{page_id}
/
html
Get page HTML for editing
curl --request GET \
  --url https://apidev.lindo.ai/v1/workspace/website/{website_id}/pages/{page_id}/html \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "page_id": "<string>",
    "html": "<string>",
    "path": "<string>",
    "name": "<string>",
    "seo": {
      "page_title": "<string>",
      "meta_description": "<string>"
    },
    "settings": {
      "theme": {
        "mode": "<string>",
        "direction": "<string>",
        "main_classes": "<string>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Path Parameters

website_id
string
required

Unique identifier of the website

Example:

"ws_abc123"

page_id
string
required

Unique identifier of the page

Example:

"page_abc123"

Response

Page HTML retrieved successfully

success
enum<boolean>
required
Available options:
true,
false
result
object
required