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

# Introduction

> Create & manage your blogs via API with BlogBowl

## Authentication

BlogBowl API uses token-based authentication.

To authenticate your requests, include an `Authorization` header with your API token.

### Step 1 — Get your token

1. Open workspace settings BlogBowl.
2. Copy your authentication token from the dashboard.

<Frame>
  <img src="https://mintcdn.com/blogbowl/HbRQV3BCbMq0LPCm/images/Screenshot2026-03-01at14.21.45.png?fit=max&auto=format&n=HbRQV3BCbMq0LPCm&q=85&s=cdd88b744fdff904f23e6b079ae4dc60" alt="Screenshot 2026 03 01 At 14 21 45" width="2974" height="1546" data-path="images/Screenshot2026-03-01at14.21.45.png" />
</Frame>

### Step 2 — Add the Authorization header

Include the token in every API request using the following header:

```
Authorization: <YOUR_TOKEN>
```

### Example

```
GET /api/v1/pages
Authorization: your_token_here
```

### Notes

* Replace `<YOUR_TOKEN>` with the token copied from the UI.
* Keep your token private and do not expose it in public repositories or client-side code.
* Requests without a valid token will be rejected.
