> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# checkout_sessions_list

> List checkout sessions. Stripe has no payment_status filter, so find paid ones by reading the results.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.stripe.com/v1/checkout/sessions"}</code></div>

```python stripe_checkout_sessions_list.py theme={null}
from charter.packs import stripe

result = await stripe.checkout_sessions_list.ainvoke({})
```

<Note>
  Pages by cursor: `data[-1].id` is sent back as `starting_after`.
</Note>

## Query parameters

<div className="reference-table">
  | Field           | Type                                                                                        | Description                                                                                                                                                          |
  | --------------- | ------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `limit`         | `integer`                                                                                   | A limit on the number of objects to be returned, between 1 and 100. Defaults to 10. <span className="field-constraints">≥ 1; ≤ 100; defaults to `10`</span>          |
  | `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. |
  | `customer`      | `string`                                                                                    | Only return sessions for this customer.                                                                                                                              |
  | `subscription`  | `string`                                                                                    | Return the session that created this subscription.                                                                                                                   |
  | `paymentIntent` | `string`                                                                                    | Return the session for this PaymentIntent.                                                                                                                           |
  | `paymentLink`   | `string`                                                                                    | Only return sessions created by this payment link.                                                                                                                   |
  | `status`        | [CheckoutSessionStatus](/charter/charter/packs/stripe/catalog_writes/objects#checkoutsessionstatus) | Only return sessions in this state. 'complete' means finished, not necessarily paid.                                                                                 |
  | `created`       | [CreatedFilter](/charter/charter/packs/stripe/payments/objects#createdfilter)                       | Only return sessions created in this window.                                                                                                                         |
</div>
