---
title: "API Tokens"
description: "API tokens allow programmatic access to the Uptimeify API. Tokens are prefixed with wsm_ and can be scoped to a specific customer or organization-wide."
---

There are two endpoint scopes:

- **Organization tokens** (`/api/organization/tokens`): admin-only, full org access
- **Customer tokens** (`/api/customer/tokens`): scoped to accessible customers

## Authentication

All examples assume a session cookie (not API tokens, API tokens cannot manage other API tokens):

```bash
BASE_URL="https://uptimeify.io"
```

## Endpoints

- [List Organization Tokens](./list-organization-tokens)
- [Create Organization Token](./create-organization-token)
- [Delete Organization Token](./delete-organization-token)
- [List Customer Tokens](./list-customer-tokens)
- [Create Customer Token](./create-customer-token)
- [Delete Customer Token](./delete-customer-token)

