> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Landing Pages

> List landing pages for the current company

List landing pages for the authenticated company.

## Request

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/landing-pages" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "companyId": "comp_abc123",
    "landingPages": [
      {
        "id": "lp_abc123",
        "companyId": "comp_abc123",
        "name": "Product Waitlist",
        "slug": "product-waitlist",
        "status": "published",
        "content": { "version": 2, "template": "waitlist", "blocks": [] },
        "viewCount": 1240,
        "conversionCount": 186,
        "publishedAt": "2026-05-01T10:30:00Z",
        "createdAt": "2026-05-01T10:00:00Z",
        "updatedAt": "2026-05-01T10:30:00Z",
        "url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages/lp_abc123",
        "appPublicUrl": "https://sequenzy.com/lp/comp_abc123/product-waitlist",
        "publicUrl": "https://pages.example.com/product-waitlist"
      }
    ],
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages"
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
