Skip to main content
GET
/
v0
/
price-tracking
/
subscriptions
Python
import os
from channel3_sdk import Channel3

client = Channel3(
    api_key=os.environ.get("CHANNEL3_API_KEY"),  # This is the default and can be omitted
)
paginated_subscriptions = client.price_tracking.list_subscriptions()
print(paginated_subscriptions.subscriptions)
{
  "subscriptions": [
    {
      "canonical_product_id": "<string>",
      "subscription_status": "active",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

x-api-key
string
header
required

Query Parameters

page_token
string | null
limit
integer
default:20
Required range: 1 <= x <= 100

Response

Successful Response

subscriptions
SubscriptionResponse · object[]
required
next_page_token
string | null