Stripe · Capability

Stripe Payment Intents API — Get

Stripe Payment Intents API — Get. 3 operations. Lead operation: Stripe Get Payment Intents. Self-contained Naftiko capability covering one Stripe business surface.

Run with Naftiko StripeGet

What You Can Do

GET
Getpaymentintents — Stripe Get Payment Intents
/v1/v1/payment-intents
GET
Getpaymentintentssearch — Stripe Get Payment Intents Search
/v1/v1/payment-intents/search
GET
Getpaymentintentsintent — Stripe Get Payment Intents
/v1/v1/payment-intents/{intent}

MCP Tools

stripe-get-payment-intents

Stripe Get Payment Intents

read-only idempotent
stripe-get-payment-intents-search

Stripe Get Payment Intents Search

read-only idempotent
stripe-get-payment-intents-2

Stripe Get Payment Intents

read-only idempotent

Capability Spec

payment-intents-get.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stripe Payment Intents API — Get
  description: 'Stripe Payment Intents API — Get. 3 operations. Lead operation: Stripe Get   Payment Intents. 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: payment-intents-get
    baseUri: https://api.stripe.com
    description: Stripe Payment Intents API — Get business capability. Self-contained, no shared references.
    resources:
    - name: v1-payment_intents
      path: /v1/payment_intents
      operations:
      - name: getpaymentintents
        method: GET
        description: Stripe Get   Payment Intents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: created
          in: query
          type: string
          description: A filter on the list, based on the object `created` field. The value can be a string with an integer
            Unix timestamp or a dictionary with a number of different q
        - name: customer
          in: query
          type: string
          description: Only return PaymentIntents for the customer that this customer ID specifies.
        - 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: 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
    - name: v1-payment_intents-search
      path: /v1/payment_intents/search
      operations:
      - name: getpaymentintentssearch
        method: GET
        description: Stripe Get   Payment Intents Search
        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: 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: page
          in: query
          type: string
          description: A cursor for pagination across multiple pages of results. Don't include this parameter on the first
            call. Use the next_page value returned in a previous respons
        - name: query
          in: query
          type: string
          description: The search query string. See [search query language](https://stripe.com/docs/search#search-query-language)
            and the list of supported [query fields for payment i
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-payment_intents-intent
      path: /v1/payment_intents/{intent}
      operations:
      - name: getpaymentintentsintent
        method: GET
        description: Stripe Get   Payment Intents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: client_secret
          in: query
          type: string
          description: The client secret of the PaymentIntent. We require it if you use a publishable key to retrieve the
            source.
        - name: expand
          in: query
          type: array
          description: Specifies which fields in the response should be expanded.
        - name: intent
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.STRIPE_API_KEY}}'
  exposes:
  - type: rest
    namespace: payment-intents-get-rest
    port: 8080
    description: REST adapter for Stripe Payment Intents API — Get. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/payment-intents
      name: v1-payment-intents
      description: REST surface for v1-payment_intents.
      operations:
      - method: GET
        name: getpaymentintents
        description: Stripe Get   Payment Intents
        call: payment-intents-get.getpaymentintents
        with:
          created: rest.created
          customer: rest.customer
          ending_before: rest.ending_before
          expand: rest.expand
          limit: rest.limit
          starting_after: rest.starting_after
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/payment-intents/search
      name: v1-payment-intents-search
      description: REST surface for v1-payment_intents-search.
      operations:
      - method: GET
        name: getpaymentintentssearch
        description: Stripe Get   Payment Intents Search
        call: payment-intents-get.getpaymentintentssearch
        with:
          expand: rest.expand
          limit: rest.limit
          page: rest.page
          query: rest.query
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/payment-intents/{intent}
      name: v1-payment-intents-intent
      description: REST surface for v1-payment_intents-intent.
      operations:
      - method: GET
        name: getpaymentintentsintent
        description: Stripe Get   Payment Intents
        call: payment-intents-get.getpaymentintentsintent
        with:
          client_secret: rest.client_secret
          expand: rest.expand
          intent: rest.intent
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payment-intents-get-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stripe Payment Intents API — Get. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: stripe-get-payment-intents
      description: Stripe Get   Payment Intents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payment-intents-get.getpaymentintents
      with:
        created: tools.created
        customer: tools.customer
        ending_before: tools.ending_before
        expand: tools.expand
        limit: tools.limit
        starting_after: tools.starting_after
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-get-payment-intents-search
      description: Stripe Get   Payment Intents Search
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payment-intents-get.getpaymentintentssearch
      with:
        expand: tools.expand
        limit: tools.limit
        page: tools.page
        query: tools.query
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-get-payment-intents-2
      description: Stripe Get   Payment Intents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payment-intents-get.getpaymentintentsintent
      with:
        client_secret: tools.client_secret
        expand: tools.expand
        intent: tools.intent
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.