Stripe · Capability

Stripe Events API — Get

Stripe Events API — Get. 2 operations. Lead operation: Stripe Get Events. Self-contained Naftiko capability covering one Stripe business surface.

Run with Naftiko StripeGet

What You Can Do

GET
Getevents — Stripe Get Events
/v1/v1/events
GET
Geteventsid — Stripe Get Events Id
/v1/v1/events/{id}

MCP Tools

stripe-get-events

Stripe Get Events

read-only idempotent
stripe-get-events-id

Stripe Get Events Id

read-only idempotent

Capability Spec

events-get.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stripe Events API — Get
  description: 'Stripe Events API — Get. 2 operations. Lead operation: Stripe Get   Events. 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: events-get
    baseUri: https://api.stripe.com
    description: Stripe Events API — Get business capability. Self-contained, no shared references.
    resources:
    - name: v1-events
      path: /v1/events
      operations:
      - name: getevents
        method: GET
        description: Stripe Get   Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: created
          in: query
          type: string
        - name: delivery_success
          in: query
          type: boolean
          description: Filter events by whether all webhooks were successfully delivered. If false, events which are still
            pending or have failed all delivery attempts to a webhook en
        - 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: type
          in: query
          type: string
          description: A string containing a specific event name, or group of events using * as a wildcard. The list will
            be filtered to include only events with a matching event prop
        - name: types
          in: query
          type: array
          description: An array of up to 20 strings containing specific event names. The list will be filtered to include
            only events with a matching event property. You may pass eith
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-events-id
      path: /v1/events/{id}
      operations:
      - name: geteventsid
        method: GET
        description: Stripe Get   Events Id
        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: id
          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: events-get-rest
    port: 8080
    description: REST adapter for Stripe Events API — Get. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/events
      name: v1-events
      description: REST surface for v1-events.
      operations:
      - method: GET
        name: getevents
        description: Stripe Get   Events
        call: events-get.getevents
        with:
          created: rest.created
          delivery_success: rest.delivery_success
          ending_before: rest.ending_before
          expand: rest.expand
          limit: rest.limit
          starting_after: rest.starting_after
          type: rest.type
          types: rest.types
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/events/{id}
      name: v1-events-id
      description: REST surface for v1-events-id.
      operations:
      - method: GET
        name: geteventsid
        description: Stripe Get   Events Id
        call: events-get.geteventsid
        with:
          expand: rest.expand
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: events-get-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stripe Events API — Get. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: stripe-get-events
      description: Stripe Get   Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-get.getevents
      with:
        created: tools.created
        delivery_success: tools.delivery_success
        ending_before: tools.ending_before
        expand: tools.expand
        limit: tools.limit
        starting_after: tools.starting_after
        type: tools.type
        types: tools.types
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-get-events-id
      description: Stripe Get   Events Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-get.geteventsid
      with:
        expand: tools.expand
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.