Skip to main content
GET
/
api
/
v1
/
blogs.json
List Blogs
curl --request GET \
  --url https://api.launchmystore.io/api/v1/blogs.json \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data.items": [
    {
      "id": "<string>",
      "title": "<string>",
      "handle": "<string>",
      "commentable": "<string>",
      "articles_count": 123,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "data.pagination": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

List Blogs

Returns a paginated list of blogs in the store. Blogs are containers for articles/posts.

Request

curl -X GET "https://api.launchmystore.io/api/v1/blogs.json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Parameters

page
integer
default:"1"
Page number for pagination
limit
integer
default:"50"
Number of items per page (max 250)
handle
string
Filter by exact handle
created_at_min
string
Filter blogs created after this date (ISO 8601)
updated_at_min
string
Filter blogs updated after this date (ISO 8601)

Response

success
boolean
Whether the request succeeded
data.items
array
Array of blog objects
data.pagination
object
Pagination information

Example Response

{
  "success": true,
  "data": {
    "items": [
      {
        "id": "blog_abc123",
        "title": "News",
        "handle": "news",
        "commentable": "moderate",
        "articles_count": 24,
        "feedburner": null,
        "feedburner_location": null,
        "created_at": "2024-01-01T10:00:00Z",
        "updated_at": "2024-03-15T14:30:00Z"
      },
      {
        "id": "blog_def456",
        "title": "Style Guide",
        "handle": "style-guide",
        "commentable": "no",
        "articles_count": 8,
        "feedburner": null,
        "feedburner_location": null,
        "created_at": "2024-02-15T10:00:00Z",
        "updated_at": "2024-03-10T09:00:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 50,
      "total": 2,
      "hasMore": false
    }
  }
}

Error Codes

CodeDescription
UNAUTHORIZEDInvalid or missing access token
FORBIDDENApp doesn’t have read_content scope