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

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"

Query Parameters

page
number | null
default:1

Page number for pagination

Example:

1

Search term to filter blogs by name or path

Example:

"announcement"

Response

Blog list retrieved successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required