> ## 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

> Retrieve a list of blogs

# List Blogs

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

## Request

```bash theme={null}
curl -X GET "https://api.launchmystore.io/api/v1/blogs.json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

Requires the `read_content` scope.

## Parameters

<ParamField query="page" type="integer" default="1">
  Page number for pagination
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Number of items per page
</ParamField>

## Response

The response uses the standard envelope. Blogs are returned under `data.blogs`, with offset-based pagination under `data.pagination`. Results are ordered by creation date, newest first.

<ResponseField name="status" type="integer">
  HTTP status code (e.g. `200`)
</ResponseField>

<ResponseField name="state" type="string">
  Result state, e.g. `success`
</ResponseField>

<ResponseField name="data.blogs" type="array">
  Array of blog objects

  <Expandable title="Blog Object">
    <ResponseField name="blogsPageId" type="string">
      Unique blog ID (UUID)
    </ResponseField>

    <ResponseField name="id" type="string">
      Short numeric blog ID
    </ResponseField>

    <ResponseField name="name" type="string">
      Blog name
    </ResponseField>

    <ResponseField name="title" type="string">
      Blog title
    </ResponseField>

    <ResponseField name="handle" type="string">
      URL-safe blog handle
    </ResponseField>

    <ResponseField name="templateSuffix" type="string">
      Custom template suffix for theming
    </ResponseField>

    <ResponseField name="seoTitle" type="string">
      SEO title
    </ResponseField>

    <ResponseField name="seoDesc" type="string">
      SEO description
    </ResponseField>

    <ResponseField name="seoImage" type="string">
      SEO image URL
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      Creation timestamp (ISO 8601)
    </ResponseField>

    <ResponseField name="updatedAt" type="string">
      Last update timestamp (ISO 8601)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="data.pagination" type="object">
  Pagination information: `page`, `limit`, `total`, `hasMore`
</ResponseField>

## Example Response

```json theme={null}
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": {
    "blogs": [
      {
        "blogsPageId": "blog_abc123",
        "id": "482915",
        "name": "News",
        "title": "News",
        "handle": "news",
        "templateSuffix": null,
        "seoTitle": null,
        "seoDesc": null,
        "seoImage": null,
        "createdAt": "2024-01-01T10:00:00.000Z",
        "updatedAt": "2024-03-15T14:30:00.000Z"
      },
      {
        "blogsPageId": "blog_def456",
        "id": "517043",
        "name": "Style Guide",
        "title": "Style Guide",
        "handle": "style-guide",
        "templateSuffix": null,
        "seoTitle": null,
        "seoDesc": null,
        "seoImage": null,
        "createdAt": "2024-02-15T10:00:00.000Z",
        "updatedAt": "2024-03-10T09:00:00.000Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 50,
      "total": 2,
      "hasMore": false
    }
  }
}
```

## Error Codes

| Code           | Description                           |
| -------------- | ------------------------------------- |
| `UNAUTHORIZED` | Invalid or missing access token       |
| `FORBIDDEN`    | App doesn't have `read_content` scope |
