action linode_get_longview_subscriptions { label: "Longview Subscriptions List" description: "Returns a paginated list of available Longview Subscriptions. This is a public endpoint and requires no authentication.\n" provider: linode method: GET path: "/longview/subscriptions" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "A Longview Subscription represents a tier of Longview service you can subscribe to.\n" properties: { clients_included: { type: "integer" description: "The number of Longview Clients that may be created with this Subscription tier.\n" } id: { type: "string" description: "The unique ID of this Subscription tier.\n" enum: ["longview-3", "longview-10", "longview-40", "longview-100"] } label: { type: "string" description: "A display name for this Subscription tier.\n" } price: { type: "object" description: "Pricing information about this Subscription tier.\n" properties: { hourly: { type: "number" description: "The hourly price, in US dollars, for this Subscription tier.\n" } monthly: { type: "number" description: "The maximum monthly price in US Dollars for this Subscription tier. You will never be charged more than this amount per month for this subscription.\n" } } } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }