List blog posts
Fetch published blog posts from the workspace with pagination and optional tag filtering.
curl -X GET "https://dropaphi.xyz/api/v1/blog" \n -H "DROP-API-Key: da_live_your_key"
{
"success": true,
"data": {
"posts": [
{
"id": "post_123",
"title": "Why communication matters",
"slug": "why-communication-matters",
"excerpt": "A short summary",
"coverImage": "https://dropaphi.xyz/images/communication-cover.jpg",
"publishedAt": "2026-08-01T00:00:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"pages": 1
}
}
}