Skip to main content
GET
/
2025-09
/
subscriptions
List all Subscriptions
curl --request GET \
  --url https://public-api.stora.co/2025-09/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "subscriptions": [
    {
      "id": "sub_125c561ac05edfa1",
      "billing_period": "monthly",
      "cancellation_reason": null,
      "cancelled": false,
      "contact": {
        "id": "con_195h6kfm9ro15lof"
      },
      "created_at": "2025-02-22T14:41:00Z",
      "current_period": {
        "ends_at": null,
        "starts_at": "2025-08-22T14:37:00Z"
      },
      "ends_at": null,
      "line_items": [
        {
          "created_at": "2025-02-22T14:41:00Z",
          "item": {
            "id": "utype_f18fc91387cdf710"
          },
          "price": {
            "amount": 5000,
            "currency": "GBP",
            "formatted": "£50.00"
          },
          "quantity": 1,
          "type": "unit_type",
          "updated_at": "2025-02-22T14:41:00Z"
        },
        {
          "created_at": "2025-02-22T14:41:00Z",
          "item": {
            "id": "plvl_dfaf0f9b464627e9"
          },
          "price": {
            "amount": 2000,
            "currency": "GBP",
            "formatted": "£20.00"
          },
          "quantity": 1,
          "type": "protection",
          "updated_at": "2025-02-22T14:41:00Z"
        },
        {
          "created_at": "2025-02-22T14:41:00Z",
          "item": {
            "id": "prod_d81f4b51313aa8e9"
          },
          "price": {
            "amount": 12345,
            "currency": "GBP",
            "formatted": "£123.45"
          },
          "quantity": 1,
          "type": "custom_product",
          "updated_at": "2025-02-22T14:41:00Z"
        }
      ],
      "order": {
        "id": "order_8541ceb54c1b01f8"
      },
      "site": {
        "id": "site_14b419f1096013f1"
      },
      "starts_at": "2025-02-22T14:41:00Z",
      "stripe_subscription_id": null,
      "stripe_subscription_schedule_id": null,
      "tenancy": {
        "id": "ten_acaf3269a573af74"
      },
      "updated_at": "2025-02-22T14:41:00Z"
    }
  ],
  "meta": {
    "request_id": "01563646-58c1-4607-8fe0-cae3e92c4477",
    "curies": [
      {
        "name": "bo",
        "href": "https://app.stora.test{rel}",
        "templated": true,
        "title": "Backoffice"
      },
      {
        "name": "sf",
        "href": "https://acme.stora.test{rel}",
        "templated": true,
        "title": "Storefront"
      }
    ],
    "pagination": {
      "count": 1,
      "last": 1,
      "limit": 50,
      "next": null,
      "page": 1,
      "pages": 1,
      "prev": null
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer Token necessary to use API

Query Parameters

page
integer

Pagination: Page number

Required range: x >= 1
limit
integer

Pagination: Limit number of items per page.

Required range: 1 <= x <= 100
contact_id
string[]

Filter by Contact IDs. Supports multiple values separated by a comma.

sort_by
enum<string>

Sorting by attribute. Default created_at

Available options:
created_at
sort_direction
enum<string>

Sorting by ASC or DESC direction. Default DESC

Available options:
ASC,
DESC
expand
string[]

This endpoint supports expandable responses. For more, see the documentation page.

Response

200 - application/json

list of subscriptions

List of Subscriptions

subscriptions
object[]
meta
object