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

# Get Plan

> Get current and scheduled plan details for your organization.

Returns the current paid plan, any scheduled plan change, and current credit usage context.

`plan.id` and `scheduled_plan.id` return the concrete plan ID (for example: `creator`, `creator_annual`, `professional`, `professional_annual`, or `pro`).

## Request

```bash theme={null}
curl -X GET "https://api.mosaic.so/plan" \
  -H "Authorization: Bearer mk_your_api_key"
```

## Response

```json theme={null}
{
  "organization_id": "d808af70-fc57-4f90-95ca-186a9cbf2ef7",
  "plan": {
    "id": "creator_annual",
    "family": "creator",
    "status": "active",
    "started_at": "2026-02-01T00:00:00.000Z",
    "current_period_start": "2026-03-01T00:00:00.000Z",
    "current_period_end": "2026-04-01T00:00:00.000Z",
    "canceled_at": null
  },
  "scheduled_plan": null,
  "credits": {
    "balance": 1840,
    "usage": 660,
    "included_usage": 2500,
    "unlimited": false
  }
}
```
