Stripe · Capability
Stripe Checkout API — Get
Stripe Checkout API — Get. 3 operations. Lead operation: Stripe Get Checkout Sessions. Self-contained Naftiko capability covering one Stripe business surface.
What You Can Do
GET
Getcheckoutsessions
— Stripe Get Checkout Sessions
/v1/v1/checkout/sessions
GET
Getcheckoutsessionssession
— Stripe Get Checkout Sessions Session
/v1/v1/checkout/sessions/{session}
GET
Getcheckoutsessionssessionlineitems
— Stripe Get Checkout Sessions Session Line Items
/v1/v1/checkout/sessions/{session}/line-items
MCP Tools
stripe-get-checkout-sessions
Stripe Get Checkout Sessions
read-only
idempotent
stripe-get-checkout-sessions-session
Stripe Get Checkout Sessions Session
read-only
idempotent
stripe-get-checkout-sessions-session-2
Stripe Get Checkout Sessions Session Line Items
read-only
idempotent
Capability Spec
naftiko: 1.0.0-alpha2
info:
label: Stripe Checkout API — Get
description: 'Stripe Checkout API — Get. 3 operations. Lead operation: Stripe Get Checkout Sessions. Self-contained Naftiko
capability covering one Stripe business surface.'
tags:
- Stripe
- Get
created: '2026-05-19'
modified: '2026-05-19'
binds:
- namespace: env
keys:
STRIPE_API_KEY: STRIPE_API_KEY
capability:
consumes:
- type: http
namespace: checkout-get
baseUri: https://api.stripe.com
description: Stripe Checkout API — Get business capability. Self-contained, no shared references.
resources:
- name: v1-checkout-sessions
path: /v1/checkout/sessions
operations:
- name: getcheckoutsessions
method: GET
description: Stripe Get Checkout Sessions
outputRawFormat: json
outputParameters:
- name: result
type: object
value: $.
inputParameters:
- name: created
in: query
type: string
description: Only return the Checkout Sessions that were created during the given date interval.
- name: customer
in: query
type: string
description: Only return the Checkout Sessions for the Customer specified.
- name: customer_details
in: query
type: object
description: Only return the Checkout Sessions for the Customer details specified.
- name: ending_before
in: query
type: string
description: A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 ob
- name: expand
in: query
type: array
description: Specifies which fields in the response should be expanded.
- name: limit
in: query
type: integer
description: A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default
is 10.
- name: payment_intent
in: query
type: string
description: Only return the Checkout Session for the PaymentIntent specified.
- name: payment_link
in: query
type: string
description: Only return the Checkout Sessions for the Payment Link specified.
- name: starting_after
in: query
type: string
description: A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 o
- name: status
in: query
type: string
description: Only return the Checkout Sessions matching the given status.
- name: subscription
in: query
type: string
description: Only return the Checkout Session for the subscription specified.
- name: body
in: body
type: object
description: Request body (JSON).
required: false
- name: v1-checkout-sessions-session
path: /v1/checkout/sessions/{session}
operations:
- name: getcheckoutsessionssession
method: GET
description: Stripe Get Checkout Sessions Session
outputRawFormat: json
outputParameters:
- name: result
type: object
value: $.
inputParameters:
- name: expand
in: query
type: array
description: Specifies which fields in the response should be expanded.
- name: session
in: path
type: string
required: true
- name: body
in: body
type: object
description: Request body (JSON).
required: false
- name: v1-checkout-sessions-session-line_items
path: /v1/checkout/sessions/{session}/line_items
operations:
- name: getcheckoutsessionssessionlineitems
method: GET
description: Stripe Get Checkout Sessions Session Line Items
outputRawFormat: json
outputParameters:
- name: result
type: object
value: $.
inputParameters:
- name: ending_before
in: query
type: string
description: A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 ob
- name: expand
in: query
type: array
description: Specifies which fields in the response should be expanded.
- name: limit
in: query
type: integer
description: A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default
is 10.
- name: session
in: path
type: string
required: true
- name: starting_after
in: query
type: string
description: A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 o
- name: body
in: body
type: object
description: Request body (JSON).
required: false
authentication:
type: bearer
token: '{{env.STRIPE_API_KEY}}'
exposes:
- type: rest
namespace: checkout-get-rest
port: 8080
description: REST adapter for Stripe Checkout API — Get. One Spectral-compliant resource per consumed operation, prefixed
with /v1.
resources:
- path: /v1/v1/checkout/sessions
name: v1-checkout-sessions
description: REST surface for v1-checkout-sessions.
operations:
- method: GET
name: getcheckoutsessions
description: Stripe Get Checkout Sessions
call: checkout-get.getcheckoutsessions
with:
created: rest.created
customer: rest.customer
customer_details: rest.customer_details
ending_before: rest.ending_before
expand: rest.expand
limit: rest.limit
payment_intent: rest.payment_intent
payment_link: rest.payment_link
starting_after: rest.starting_after
status: rest.status
subscription: rest.subscription
body: rest.body
outputParameters:
- type: object
mapping: $.
- path: /v1/v1/checkout/sessions/{session}
name: v1-checkout-sessions-session
description: REST surface for v1-checkout-sessions-session.
operations:
- method: GET
name: getcheckoutsessionssession
description: Stripe Get Checkout Sessions Session
call: checkout-get.getcheckoutsessionssession
with:
expand: rest.expand
session: rest.session
body: rest.body
outputParameters:
- type: object
mapping: $.
- path: /v1/v1/checkout/sessions/{session}/line-items
name: v1-checkout-sessions-session-line-items
description: REST surface for v1-checkout-sessions-session-line_items.
operations:
- method: GET
name: getcheckoutsessionssessionlineitems
description: Stripe Get Checkout Sessions Session Line Items
call: checkout-get.getcheckoutsessionssessionlineitems
with:
ending_before: rest.ending_before
expand: rest.expand
limit: rest.limit
session: rest.session
starting_after: rest.starting_after
body: rest.body
outputParameters:
- type: object
mapping: $.
- type: mcp
namespace: checkout-get-mcp
port: 9090
transport: http
description: MCP adapter for Stripe Checkout API — Get. One tool per consumed operation, routed inline through this capability's
consumes block.
tools:
- name: stripe-get-checkout-sessions
description: Stripe Get Checkout Sessions
hints:
readOnly: true
destructive: false
idempotent: true
call: checkout-get.getcheckoutsessions
with:
created: tools.created
customer: tools.customer
customer_details: tools.customer_details
ending_before: tools.ending_before
expand: tools.expand
limit: tools.limit
payment_intent: tools.payment_intent
payment_link: tools.payment_link
starting_after: tools.starting_after
status: tools.status
subscription: tools.subscription
body: tools.body
outputParameters:
- type: object
mapping: $.
- name: stripe-get-checkout-sessions-session
description: Stripe Get Checkout Sessions Session
hints:
readOnly: true
destructive: false
idempotent: true
call: checkout-get.getcheckoutsessionssession
with:
expand: tools.expand
session: tools.session
body: tools.body
outputParameters:
- type: object
mapping: $.
- name: stripe-get-checkout-sessions-session-2
description: Stripe Get Checkout Sessions Session Line Items
hints:
readOnly: true
destructive: false
idempotent: true
call: checkout-get.getcheckoutsessionssessionlineitems
with:
ending_before: tools.ending_before
expand: tools.expand
limit: tools.limit
session: tools.session
starting_after: tools.starting_after
body: tools.body
outputParameters:
- type: object
mapping: $.