---
title: Quick Start — PlumoAI Developer Guide
description: Make your first PlumoAI API call in minutes.
url: https://plumoai.com/developer-page/guides/quick-start
---

# Quick Start

Get up and running with the PlumoAI API in minutes.

1

### Get your API key

Sign up for a free account and generate your API key from the dashboard.

```
// Get your API key from https://app.plumoai.com/settings/api
```

2

### Make your first request

Use curl or your favorite HTTP client to make a request.

```
curl https://api.plumoai.com/v1/pages \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
```

3

### Start building

Explore our guides and API reference to build your integration.

```
// Check out our guides and examples
// Visit /developer-page/guides for more
```
