Chase · Capability

Chase Account and Customer Information API — Accounts

Chase Account and Customer Information API — Accounts. 2 operations. Lead operation: List accessible accounts. Self-contained Naftiko capability covering one Chase business surface.

Run with Naftiko ChaseAccounts

What You Can Do

GET
Listaccounts — List accessible accounts
/v1/accounts
GET
Getaccount — Get account details
/v1/accounts/{accountid}

MCP Tools

list-accessible-accounts

List accessible accounts

read-only idempotent
get-account-details

Get account details

read-only idempotent

Capability Spec

account-and-customer-information-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Chase Account and Customer Information API — Accounts
  description: 'Chase Account and Customer Information API — Accounts. 2 operations. Lead operation: List accessible accounts.
    Self-contained Naftiko capability covering one Chase business surface.'
  tags:
  - Chase
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHASE_API_KEY: CHASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: account-and-customer-information-accounts
    baseUri: https://api.chase.com/aggregation/fdx
    description: Chase Account and Customer Information API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: accounts
      path: /accounts
      operations:
      - name: listaccounts
        method: GET
        description: List accessible accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts-accountId
      path: /accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: Get account details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.CHASE_API_KEY}}'
  exposes:
  - type: rest
    namespace: account-and-customer-information-accounts-rest
    port: 8080
    description: REST adapter for Chase Account and Customer Information API — Accounts. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/accounts
      name: accounts
      description: REST surface for accounts.
      operations:
      - method: GET
        name: listaccounts
        description: List accessible accounts
        call: account-and-customer-information-accounts.listaccounts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}
      name: accounts-accountid
      description: REST surface for accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: Get account details
        call: account-and-customer-information-accounts.getaccount
        with:
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: account-and-customer-information-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Chase Account and Customer Information API — Accounts. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-accessible-accounts
      description: List accessible accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-and-customer-information-accounts.listaccounts
      outputParameters:
      - type: object
        mapping: $.
    - name: get-account-details
      description: Get account details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-and-customer-information-accounts.getaccount
      with:
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.