US Bancorp · Capability

US Bank Corporate Account Information API — Transactions

US Bank Corporate Account Information API — Transactions. 2 operations. Lead operation: Get Current Day Transactions. Self-contained Naftiko capability covering one Us Bancorp business surface.

Run with Naftiko Us BancorpTransactions

What You Can Do

GET
Getcurrentdaytransactions — Get Current Day Transactions
/v1/accounts/{accountnumber}/current-day-transactions
GET
Getaccounttransactions — Get Account Transactions by Date Range
/v1/accounts/{accountnumber}/transactions

MCP Tools

get-current-day-transactions

Get Current Day Transactions

read-only idempotent
get-account-transactions-date-range

Get Account Transactions by Date Range

read-only idempotent

Capability Spec

us-bank-corporate-account-information-transactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: US Bank Corporate Account Information API — Transactions
  description: 'US Bank Corporate Account Information API — Transactions. 2 operations. Lead operation: Get Current Day Transactions.
    Self-contained Naftiko capability covering one Us Bancorp business surface.'
  tags:
  - Us Bancorp
  - Transactions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    US_BANCORP_API_KEY: US_BANCORP_API_KEY
capability:
  consumes:
  - type: http
    namespace: us-bank-corporate-account-information-transactions
    baseUri: https://api.usbank.com/v1
    description: US Bank Corporate Account Information API — Transactions business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountNumber-current-day-transactions
      path: /accounts/{accountNumber}/current-day-transactions
      operations:
      - name: getcurrentdaytransactions
        method: GET
        description: Get Current Day Transactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountNumber
          in: path
          type: string
          description: The U.S. Bank account number
          required: true
        - name: Correlation-ID
          in: header
          type: string
          required: true
        - name: Accept
          in: header
          type: string
          required: true
        - name: On-Behalf-Of
          in: header
          type: string
    - name: accounts-accountNumber-transactions
      path: /accounts/{accountNumber}/transactions
      operations:
      - name: getaccounttransactions
        method: GET
        description: Get Account Transactions by Date Range
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountNumber
          in: path
          type: string
          description: The U.S. Bank account number
          required: true
        - name: fromDate
          in: query
          type: string
          description: Start date for transaction history (ISO 8601 date)
          required: true
        - name: toDate
          in: query
          type: string
          description: End date for transaction history (ISO 8601 date)
          required: true
        - name: Correlation-ID
          in: header
          type: string
          required: true
        - name: Accept
          in: header
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.US_BANCORP_API_KEY}}'
  exposes:
  - type: rest
    namespace: us-bank-corporate-account-information-transactions-rest
    port: 8080
    description: REST adapter for US Bank Corporate Account Information API — Transactions. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountnumber}/current-day-transactions
      name: accounts-accountnumber-current-day-transactions
      description: REST surface for accounts-accountNumber-current-day-transactions.
      operations:
      - method: GET
        name: getcurrentdaytransactions
        description: Get Current Day Transactions
        call: us-bank-corporate-account-information-transactions.getcurrentdaytransactions
        with:
          accountNumber: rest.accountNumber
          Correlation-ID: rest.Correlation-ID
          Accept: rest.Accept
          On-Behalf-Of: rest.On-Behalf-Of
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountnumber}/transactions
      name: accounts-accountnumber-transactions
      description: REST surface for accounts-accountNumber-transactions.
      operations:
      - method: GET
        name: getaccounttransactions
        description: Get Account Transactions by Date Range
        call: us-bank-corporate-account-information-transactions.getaccounttransactions
        with:
          accountNumber: rest.accountNumber
          fromDate: rest.fromDate
          toDate: rest.toDate
          Correlation-ID: rest.Correlation-ID
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: us-bank-corporate-account-information-transactions-mcp
    port: 9090
    transport: http
    description: MCP adapter for US Bank Corporate Account Information API — Transactions. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-current-day-transactions
      description: Get Current Day Transactions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: us-bank-corporate-account-information-transactions.getcurrentdaytransactions
      with:
        accountNumber: tools.accountNumber
        Correlation-ID: tools.Correlation-ID
        Accept: tools.Accept
        On-Behalf-Of: tools.On-Behalf-Of
      outputParameters:
      - type: object
        mapping: $.
    - name: get-account-transactions-date-range
      description: Get Account Transactions by Date Range
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: us-bank-corporate-account-information-transactions.getaccounttransactions
      with:
        accountNumber: tools.accountNumber
        fromDate: tools.fromDate
        toDate: tools.toDate
        Correlation-ID: tools.Correlation-ID
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.