Fiserv Transactions API

Retrieve and manage account transaction history and details.

Operations 2

GET /banking/accounts/{accountId}/transactions Fiserv List account transactions #
GET /v1/accounts/{accountNumber}/transactions Fiserv List account transactions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/fiserv-transactions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

fiserv-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fiserv Transactions API
  version: 1.0.0
  termsOfService: https://www.fiserv.com/en/legal.html
  description: 'Operations tagged Transactions across 2 of this provider''s published API definitions: fiserv-bankinghub-openapi.yml, fiserv-carddeveloper-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://cert.api.fiservapps.com
  description: Certification Environment
- url: https://prod.api.fiservapps.com
  description: Production Environment
security:
- bearerAuth: []
tags:
- name: Transactions
  description: Retrieve and manage account transaction history and details.
paths:
  /banking/accounts/{accountId}/transactions:
    get:
      operationId: listTransactions
      summary: Fiserv List account transactions
      description: Retrieves transaction history for a specific account. Supports filtering by date range, transaction type, and amount range.
      tags:
      - Transactions
      parameters:
      - $ref: '#/components/parameters/AccountId'
      - name: fromDate
        in: query
        schema:
          type: string
          format: date
        description: Start date for the transaction search range.
      - name: toDate
        in: query
        schema:
          type: string
          format: date
        description: End date for the transaction search range.
      - name: transactionType
        in: query
        schema:
          type: string
        description: Filter by transaction type.
      responses:
        '200':
          description: Transactions returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionListResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://cert.api.fiservapps.com
      description: Certification Environment
    - url: https://prod.api.fiservapps.com
      description: Production Environment
  /v1/accounts/{accountNumber}/transactions:
    get:
      operationId: listTransactions
      summary: Fiserv List account transactions
      description: Retrieves summary or detailed transaction history for a card account. Supports filtering by date range, merchant, and transaction type.
      tags:
      - Transactions
      parameters:
      - $ref: '#/components/parameters/AccountNumber'
      - name: fromDate
        in: query
        schema:
          type: string
          format: date
        description: Start date for the transaction search.
      - name: toDate
        in: query
        schema:
          type: string
          format: date
        description: End date for the transaction search.
      - name: transactionType
        in: query
        schema:
          type: string
        description: Filter by transaction type.
      responses:
        '200':
          description: Transactions returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionListResponse_2'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse_2'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse_2'
    servers:
    - url: https://cert.api.fiservapps.com
      description: Certification Environment
    - url: https://prod.api.fiservapps.com
      description: Production Environment
components:
  schemas:
    TransactionListResponse:
      type: object
      description: Response body for transaction list inquiry.
      properties:
        accountId:
          type: string
          description: The account identifier.
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/Transaction'
          description: The list of transactions.
    ErrorResponse:
      type: object
      description: Standard error response.
      properties:
        statusCode:
          type: string
          description: The error status code.
        statusDescription:
          type: string
          description: A human-readable error description.
        errors:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: The specific error code.
              message:
                type: string
                description: The error message.
              field:
                type: string
                description: The field that caused the error.
          description: Detailed error information.
    Transaction:
      type: object
      description: A single account transaction record.
      properties:
        transactionId:
          type: string
          description: The unique transaction identifier.
        transactionType:
          type: string
          description: The type of transaction (e.g., debit, credit).
        amount:
          type: number
          format: double
          description: The transaction amount.
        currency:
          type: string
          description: The ISO 4217 currency code.
        description:
          type: string
          description: The transaction description.
        postDate:
          type: string
          format: date
          description: The posting date.
        effectiveDate:
          type: string
          format: date
          description: The effective date.
        runningBalance:
          type: number
          format: double
          description: The running balance after the transaction.
    TransactionListResponse_2:
      type: object
      description: Response body for transaction list.
      properties:
        accountNumber:
          type: string
          description: The account number.
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/CardTransaction'
          description: The list of transactions.
    ErrorResponse_2:
      type: object
      description: Standard error response.
      properties:
        code:
          type: string
          description: The error code.
        message:
          type: string
          description: The error message.
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
                description: The field that caused the error.
              message:
                type: string
                description: The field-level error message.
          description: Detailed field-level errors.
    CardTransaction:
      type: object
      description: A single card transaction record.
      properties:
        transactionId:
          type: string
          description: The transaction identifier.
        transactionDate:
          type: string
          format: date
          description: The transaction date.
        postDate:
          type: string
          format: date
          description: The posting date.
        amount:
          type: number
          format: double
          description: The transaction amount.
        currency:
          type: string
          description: The currency code.
        merchantName:
          type: string
          description: The merchant name.
        merchantCategoryCode:
          type: string
          description: The merchant category code.
        transactionType:
          type: string
          description: The transaction type (purchase, refund, etc.).
        description:
          type: string
          description: The transaction description.
  parameters:
    AccountId:
      name: accountId
      in: path
      required: true
      schema:
        type: string
      description: The unique account identifier.
    AccountNumber:
      name: accountNumber
      in: path
      required: true
      schema:
        type: string
      description: The card account number.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 Bearer token for API authentication.
x-refined-from:
- fiserv-bankinghub-openapi.yml
- fiserv-carddeveloper-openapi.yml