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

# Account & Billing

> Subscription management, API keys, and quota tracking

These endpoints are available on the platform API (`api.aws.cognee.ai`) and manage account-level resources.

## Trial and payment method

The 14-day free trial starts automatically when you sign up. No payment method is required to begin the trial.

If no payment method is on file when the trial period ends, the trial subscription is cancelled automatically.

The **Plan** page displays a warning banner when your subscription is active but no payment method is attached to your account. Clicking **Add payment method** in the banner opens a Stripe Checkout session where you can save a card without being charged immediately.

## Subscriptions

| Endpoint                                 | Description                                                          |
| ---------------------------------------- | -------------------------------------------------------------------- |
| `GET /api/v1/subscriptions/status`       | Check subscription status: `none`, `trial`, `cancelled`, or `active` |
| `POST /api/v1/subscriptions/unsubscribe` | Cancel an active subscription                                        |
| `POST /api/v1/subscriptions/resubscribe` | Reactivate a cancelled subscription                                  |

## API keys

| Endpoint                          | Description                                                |
| --------------------------------- | ---------------------------------------------------------- |
| `GET /api/v1/api-keys`            | List all API keys for the authenticated user               |
| `POST /api/v1/api-keys`           | Generate a new API key                                     |
| `DELETE /api/v1/api-keys`         | Delete an API key                                          |
| `POST /api/v1/api-keys/check`     | Validate whether an API key is active                      |
| `GET /api/v1/api-keys/my-user-id` | Get the user ID associated with the current authentication |

API keys are also managed through the [API Keys UI](/cognee-cloud/ui/api-keys).

## Health

**`GET /health`** — Basic availability probe for the Cognee Cloud service.

Returns an empty `200 OK` response when the service is running.
