Skip to main content
GET
/
v1
/
workspace
/
website
/
{website_id}
/
blogs
/
{blog_id}
Get blog details
curl --request GET \
  --url https://apidev.lindo.ai/v1/workspace/website/{website_id}/blogs/{blog_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "blog_id": "blog_abc123",
    "name": "Getting Started Guide",
    "path": "/blog/getting-started",
    "status": "Active",
    "language": "en",
    "seo": {
      "title": "Getting Started",
      "description": "Learn how to get started"
    },
    "blog_settings": {
      "featured": true,
      "category": "tutorials"
    },
    "data": {
      "content": [],
      "author": "John Doe"
    },
    "publish_date": 1705312200,
    "created_date": "2024-01-15T10:30:00Z"
  }
}

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 details retrieved successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required