---
title: "Get Website Subscription"
method: GET
path: "/api/v1/subscriptions/website"
tags: ["Billing"]
---

# Get Website Subscription

`GET /api/v1/subscriptions/website`

Returns the subscription products for a specific website, including their status and billing dates.

## Query parameters

- `website_id` string, uuid, required

## Response `200`

Successful response with subscription products

- object
  - `products` SubscriptionProduct[], required
    - `id` string, required — Unique identifier for the product
    - `name` string, required — Display name of the product
    - `status` 'active' | 'trialing' | 'expired' | 'canceled' | 'past_due', required — Current status of the subscription
    - `canceled_at` integer, nullable — Timestamp in milliseconds when the subscription was canceled (null if not canceled)
    - `cancel_at` integer, nullable — Timestamp in milliseconds when the subscription will be canceled (null if not scheduled for cancellation)
    - `started_at` integer, nullable — Timestamp in milliseconds when the subscription started
    - `ended_at` integer, nullable — Timestamp in milliseconds when the subscription ended (null if still active)

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - You don't have access to this website
- `500` — Internal server error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/revisions/6c5d71622cb9/schema)
