GET
stripe_products_list.py
Pages by cursor:
data[-1].id is sent back as starting_after.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List products in the catalog.
from charter.packs import stripe
result = await stripe.products_list.ainvoke({})
data[-1].id is sent back as starting_after.| Field | Type | Description |
|---|---|---|
limit | integer | A limit on the number of objects to be returned, between 1 and 100. Defaults to 10. ≥ 1; ≤ 100; defaults to 10 |
startingAfter | string | A cursor for use in pagination: an object ID that defines your place in the list. To get the next page, pass the id of the last object in the current page. |
endingBefore | string | A cursor for use in pagination: an object ID that defines your place in the list. Returns the page before the named object. Mutually exclusive with starting_after. |
active | boolean | Only return products that are active or inactive. |
Was this page helpful?