Lithic · Capability

Lithic Developer API — Funding Events

Lithic Developer API — Funding Events. 3 operations. Lead operation: List funding events. Self-contained Naftiko capability covering one Lithic business surface.

Run with Naftiko LithicFunding Events

What You Can Do

GET
Getfundingevents — List funding events
/v1/v1/funding-events
GET
Getfundingeventbyid — Get funding event by ID
/v1/v1/funding-events/{funding-event-token}
GET
Getfundingeventdetailsbyid — Get funding event details
/v1/v1/funding-events/{funding-event-token}/details

MCP Tools

list-funding-events

List funding events

read-only idempotent
get-funding-event-id

Get funding event by ID

read-only idempotent
get-funding-event-details

Get funding event details

read-only idempotent

Capability Spec

lithic-funding-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lithic Developer API — Funding Events
  description: 'Lithic Developer API — Funding Events. 3 operations. Lead operation: List funding events. Self-contained Naftiko
    capability covering one Lithic business surface.'
  tags:
  - Lithic
  - Funding Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LITHIC_API_KEY: LITHIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: lithic-funding-events
    baseUri: https://sandbox.lithic.com
    description: Lithic Developer API — Funding Events business capability. Self-contained, no shared references.
    resources:
    - name: v1-funding_events
      path: /v1/funding_events
      operations:
      - name: getfundingevents
        method: GET
        description: List funding events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ending_before
          in: query
          type: string
          description: A cursor representing an item's token before which a page of results should end. Used to retrieve the
            previous page of results before this item.
        - name: page_size
          in: query
          type: integer
          description: Page size (for pagination).
        - name: starting_after
          in: query
          type: string
          description: A cursor representing an item's token after which a page of results should begin. Used to retrieve
            the next page of results after this item.
    - name: v1-funding_events-funding_event_token
      path: /v1/funding_events/{funding_event_token}
      operations:
      - name: getfundingeventbyid
        method: GET
        description: Get funding event by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: funding_event_token
          in: path
          type: string
          description: Globally unique identifier for funding event.
          required: true
    - name: v1-funding_events-funding_event_token-details
      path: /v1/funding_events/{funding_event_token}/details
      operations:
      - name: getfundingeventdetailsbyid
        method: GET
        description: Get funding event details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: funding_event_token
          in: path
          type: string
          description: Globally unique identifier for funding event.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.LITHIC_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: lithic-funding-events-rest
    port: 8080
    description: REST adapter for Lithic Developer API — Funding Events. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/funding-events
      name: v1-funding-events
      description: REST surface for v1-funding_events.
      operations:
      - method: GET
        name: getfundingevents
        description: List funding events
        call: lithic-funding-events.getfundingevents
        with:
          ending_before: rest.ending_before
          page_size: rest.page_size
          starting_after: rest.starting_after
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/funding-events/{funding-event-token}
      name: v1-funding-events-funding-event-token
      description: REST surface for v1-funding_events-funding_event_token.
      operations:
      - method: GET
        name: getfundingeventbyid
        description: Get funding event by ID
        call: lithic-funding-events.getfundingeventbyid
        with:
          funding_event_token: rest.funding_event_token
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/funding-events/{funding-event-token}/details
      name: v1-funding-events-funding-event-token-details
      description: REST surface for v1-funding_events-funding_event_token-details.
      operations:
      - method: GET
        name: getfundingeventdetailsbyid
        description: Get funding event details
        call: lithic-funding-events.getfundingeventdetailsbyid
        with:
          funding_event_token: rest.funding_event_token
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lithic-funding-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lithic Developer API — Funding Events. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-funding-events
      description: List funding events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lithic-funding-events.getfundingevents
      with:
        ending_before: tools.ending_before
        page_size: tools.page_size
        starting_after: tools.starting_after
      outputParameters:
      - type: object
        mapping: $.
    - name: get-funding-event-id
      description: Get funding event by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lithic-funding-events.getfundingeventbyid
      with:
        funding_event_token: tools.funding_event_token
      outputParameters:
      - type: object
        mapping: $.
    - name: get-funding-event-details
      description: Get funding event details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lithic-funding-events.getfundingeventdetailsbyid
      with:
        funding_event_token: tools.funding_event_token
      outputParameters:
      - type: object
        mapping: $.