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

# Introduction

> Get set up with the Launchpoint API

<Warning>
  This API is currently in Private Beta. Features and endpoints may change before public release. Contact us at{" "}
  <a href="mailto:hi@launchpointhq.com">[hi@launchpointhq.com](mailto:hi@launchpointhq.com)</a> for questions or early access.
</Warning>

## Base URL

All requests are under `https://api.launchpoint.sh/{version}`. The current version is `2026-07`

| Version | Status    | Release Date | Supported Until | Phase        |
| ------- | --------- | ------------ | --------------- | ------------ |
| 2026-07 | Supported | 2026-07-15   | —               | Private Beta |
| 2025-11 | Supported | 2025-11-01   | 2026-12-31      | Deprecated   |

## Authentication

To authenticate your requests, include the `Authorization` header with the value `Bearer <api_key>`. For example:

```javascript theme={null}
const headers = {
  Authorization: "Bearer <api_key>",
};
await fetch("https://api.launchpoint.sh/2026-07/<endpoint>", {
  method: "...",
  headers,
});
```

You can create an API key in your [dashboard](https://dashboard.launchpointhq.com/settings#api).

### Scopes

Keys carry scopes, chosen at creation:

| Scope             | Grants                                                                    |
| ----------------- | ------------------------------------------------------------------------- |
| `campaigns:read`  | Read campaigns, tasks, creators, submissions, posts, and metrics          |
| `campaigns:write` | Create, update, delete, and transition campaigns and tasks (implies read) |
| `approvals:write` | Approve or reject creator applications and content submissions            |

Keys created before version `2026-07` have no campaign scopes — re-scope them in the dashboard to use the [Campaigns API](/api-reference/campaigns/overview).
