Skip to main content
GET
/
v1
/
workspace
/
website
/
{website_id}
/
blogs
/
{blog_id}
/
html
Get blog content for editing
curl --request GET \
  --url https://apidev.lindo.ai/v1/workspace/website/{website_id}/blogs/{blog_id}/html \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "blog_id": "<string>",
    "blog_content": "<string>",
    "path": "<string>",
    "name": "<string>",
    "seo": {},
    "blog_settings": {}
  }
}

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"

blog_id
string
required

Unique identifier of the blog

Example:

"blog_abc123"

Response

Blog content retrieved successfully

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