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

# Frontend Integration

> Integrate Publive CDS API with your frontend framework

Use the [Content Delivery Service (CDS) API](/dxp/api-reference/content-delivery) to power your website or application. These guides show you how to fetch and display content from Publive using popular frontend frameworks.

## Choose Your Framework

| Framework                                                         | Guide                            | Best For                                |
| ----------------------------------------------------------------- | -------------------------------- | --------------------------------------- |
| [Next.js](/dxp/documentation/guides/frontend-integration/nextjs)  | Server-side rendering with React | SEO-critical sites, blogs, news portals |
| [React](/dxp/documentation/guides/frontend-integration/react)     | Single-page applications         | Dashboards, interactive apps            |
| [Vue.js](/dxp/documentation/guides/frontend-integration/vue)      | Progressive framework            | Flexible, incrementally-adoptable sites |
| [Angular](/dxp/documentation/guides/frontend-integration/angular) | Enterprise framework             | Large-scale enterprise applications     |

## Common Pattern

All integrations follow the same basic pattern:

1. **Configure** your API credentials (server-side only)
2. **Fetch** content from the CDS API
3. **Render** content in your components
4. **Handle** pagination and navigation

<Warning>
  **Security:** Never expose your API credentials in client-side code. Always make API calls from your server or serverless functions.
</Warning>
