Increase Transactions API

Transactions are the immutable additions and removals of money from your bank account. They're the equivalent of line items on your bank statement. To learn more, see [Transactions and Transfers](/documentation/transactions-transfers).

Operations 2

GET /transactions List Transactions #
GET /transactions/{transaction_id} Retrieve a Transaction #

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/increase-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

increase-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Anything that you can achieve with PDFs, presence, and persistence in a bank branch you can do with our API. We've always wanted a fully programmatic bank so we built one. Our API faithfully exposes the data and capabilities of the Federal Reserve, Visa, The Clearing House, depository networks, and accounting tools. It's lovingly boring and exceptionally powerful. If you have any questions or want to get started, don't hesitate to ping us at sales@increase.com. We can't wait to see what you build!
  title: Increase Transactions API
  version: 0.0.1
servers:
- url: https://api.increase.com
- url: https://sandbox.increase.com
security:
- bearerAuth: []
tags:
- description: Transactions are the immutable additions and removals of money from your bank account. They're the equivalent of line items on your bank statement. To learn more, see [Transactions and Transfers](/documentation/transactions-transfers).
  name: Transactions
paths:
  /transactions:
    get:
      operationId: list_transactions
      parameters:
      - in: query
        name: cursor
        required: false
        schema:
          description: Return the page of entries after this one.
          type: string
          x-documentation-priority: low
      - in: query
        name: limit
        required: false
        schema:
          description: Limit the size of the list that is returned. The default (and maximum) is 100 objects.
          minimum: 1
          type: integer
          x-documentation-priority: low
      - in: query
        name: account_id
        required: false
        schema:
          description: Filter Transactions for those belonging to the specified Account.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Accounts
      - in: query
        name: created_at.after
        required: false
        schema:
          description: Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
          format: date-time
          type: string
          x-documentation-priority: low
      - in: query
        name: created_at.before
        required: false
        schema:
          description: Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
          format: date-time
          type: string
          x-documentation-priority: low
      - in: query
        name: created_at.on_or_after
        required: false
        schema:
          description: Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
          format: date-time
          type: string
          x-documentation-priority: low
      - in: query
        name: created_at.on_or_before
        required: false
        schema:
          description: Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
          format: date-time
          type: string
          x-documentation-priority: low
      - in: query
        name: category.in
        required: false
        schema:
          description: Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
          items:
            enum:
            - account_transfer_intention
            - ach_transfer_intention
            - ach_transfer_rejection
            - ach_transfer_return
            - cashback_payment
            - card_dispute_acceptance
            - card_dispute_financial
            - card_dispute_loss
            - card_refund
            - card_settlement
            - card_financial
            - card_revenue_payment
            - check_deposit_acceptance
            - check_deposit_return
            - fednow_transfer_acknowledgement
            - check_transfer_deposit
            - fee_payment
            - inbound_ach_transfer
            - inbound_ach_transfer_return_intention
            - inbound_check_deposit_return_intention
            - inbound_check_adjustment
            - inbound_fednow_transfer_confirmation
            - inbound_real_time_payments_transfer_confirmation
            - inbound_wire_reversal
            - inbound_wire_transfer
            - inbound_wire_transfer_reversal
            - interest_payment
            - internal_source
            - real_time_payments_transfer_acknowledgement
            - sample_funds
            - wire_transfer_intention
            - swift_transfer_intention
            - swift_transfer_return
            - card_push_transfer_acceptance
            - account_revenue_payment
            - blockchain_onramp_transfer_intention
            - blockchain_offramp_transfer_settlement
            - other
            type: string
            x-enum-descriptions:
            - 'Account Transfer Intention: details will be under the `account_transfer_intention` object.'
            - 'ACH Transfer Intention: details will be under the `ach_transfer_intention` object.'
            - 'ACH Transfer Rejection: details will be under the `ach_transfer_rejection` object.'
            - 'ACH Transfer Return: details will be under the `ach_transfer_return` object.'
            - 'Cashback Payment: details will be under the `cashback_payment` object.'
            - 'Legacy Card Dispute Acceptance: details will be under the `card_dispute_acceptance` object.'
            - 'Card Dispute Financial: details will be under the `card_dispute_financial` object.'
            - 'Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.'
            - 'Card Refund: details will be under the `card_refund` object.'
            - 'Card Settlement: details will be under the `card_settlement` object.'
            - 'Card Financial: details will be under the `card_financial` object.'
            - 'Card Revenue Payment: details will be under the `card_revenue_payment` object.'
            - 'Check Deposit Acceptance: details will be under the `check_deposit_acceptance` object.'
            - 'Check Deposit Return: details will be under the `check_deposit_return` object.'
            - 'FedNow Transfer Acknowledgement: details will be under the `fednow_transfer_acknowledgement` object.'
            - 'Check Transfer Deposit: details will be under the `check_transfer_deposit` object.'
            - 'Fee Payment: details will be under the `fee_payment` object.'
            - 'Inbound ACH Transfer Intention: details will be under the `inbound_ach_transfer` object.'
            - 'Inbound ACH Transfer Return Intention: details will be under the `inbound_ach_transfer_return_intention` object.'
            - 'Inbound Check Deposit Return Intention: details will be under the `inbound_check_deposit_return_intention` object.'
            - 'Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.'
            - 'Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.'
            - 'Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.'
            - 'Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.'
            - 'Inbound Wire Transfer Intention: details will be under the `inbound_wire_transfer` object.'
            - 'Inbound Wire Transfer Reversal Intention: details will be under the `inbound_wire_transfer_reversal` object.'
            - 'Interest Payment: details will be under the `interest_payment` object.'
            - 'Internal Source: details will be under the `internal_source` object.'
            - 'Real-Time Payments Transfer Acknowledgement: details will be under the `real_time_payments_transfer_acknowledgement` object.'
            - 'Sample Funds: details will be under the `sample_funds` object.'
            - 'Wire Transfer Intention: details will be under the `wire_transfer_intention` object.'
            - 'Swift Transfer Intention: details will be under the `swift_transfer_intention` object.'
            - 'Swift Transfer Return: details will be under the `swift_transfer_return` object.'
            - 'Card Push Transfer Acceptance: details will be under the `card_push_transfer_acceptance` object.'
            - 'Account Revenue Payment: details will be under the `account_revenue_payment` object.'
            - 'Blockchain On-Ramp Transfer Intention: details will be under the `blockchain_onramp_transfer_intention` object.'
            - 'Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.'
            - The Transaction was made for an undocumented or deprecated reason.
          type: array
          x-documentation-priority: default
        explode: false
      - in: query
        name: route_id
        required: false
        schema:
          description: Filter Transactions for those belonging to the specified route. This could be a Card ID or an Account Number ID.
          type: string
          x-documentation-priority: default
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/transaction_list'
          description: Transaction List
        4XX:
          $ref: '#/components/responses/errorResponse'
        5XX:
          $ref: '#/components/responses/errorResponse'
      summary: List Transactions
      x-sandbox-only: false
      x-tag: Transactions
      tags:
      - Transactions
  /transactions/{transaction_id}:
    get:
      operationId: retrieve_a_transaction
      parameters:
      - example: transaction_uyrp7fld2ium70oa7oi
        in: path
        name: transaction_id
        required: true
        schema:
          description: The identifier of the Transaction to retrieve.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Transactions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/transaction'
          description: Transaction
        4XX:
          $ref: '#/components/responses/errorResponse'
        5XX:
          $ref: '#/components/responses/errorResponse'
      summary: Retrieve a Transaction
      x-sandbox-only: false
      x-tag: Transactions
      tags:
      - Transactions
components:
  schemas:
    check_transfer_deposit:
      additionalProperties: true
      description: An Inbound Check is a check drawn on an Increase account that has been deposited by an external bank account. These types of checks are not pre-registered.
      example:
        back_image_file_id: file_makxrc67oh9l6sg7w9yc
        bank_of_first_deposit_routing_number: null
        deposited_at: '2020-01-31T23:59:59Z'
        front_image_file_id: file_makxrc67oh9l6sg7w9yc
        inbound_check_deposit_id: inbound_check_deposit_zoshvqybq0cjjm31mra
        transaction_id: transaction_uyrp7fld2ium70oa7oi
        transfer_id: check_transfer_30b43acfu9vw8fyc4f5
        type: check_transfer_deposit
      properties:
        back_image_file_id:
          anyOf:
          - description: The identifier of the API File object containing an image of the back of the deposited check.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Files
          - type: 'null'
        bank_of_first_deposit_routing_number:
          anyOf:
          - description: The American Bankers' Association (ABA) Routing Transit Number (RTN) for the bank depositing this check. In some rare cases, this is not transmitted via Check21 and the value will be null.
            type: string
            x-documentation-priority: default
          - type: 'null'
        deposited_at:
          description: When the check was deposited.
          format: date-time
          type: string
          x-documentation-priority: default
        front_image_file_id:
          anyOf:
          - description: The identifier of the API File object containing an image of the front of the deposited check.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Files
          - type: 'null'
        inbound_check_deposit_id:
          anyOf:
          - description: The identifier of the Inbound Check Deposit object associated with this transaction.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Inbound Check Deposits
          - type: 'null'
        transaction_id:
          anyOf:
          - description: The identifier of the Transaction object created when the check was deposited.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Transactions
          - type: 'null'
        transfer_id:
          anyOf:
          - description: The identifier of the Check Transfer object that was deposited.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Check Transfers
          - type: 'null'
        type:
          description: A constant representing the object's type. For this resource it will always be `check_transfer_deposit`.
          enum:
          - check_transfer_deposit
          type: string
          x-documentation-priority: default
      required:
      - type
      - deposited_at
      - transaction_id
      - front_image_file_id
      - back_image_file_id
      - bank_of_first_deposit_routing_number
      - inbound_check_deposit_id
      - transfer_id
      title: Check Transfer Deposit
      type: object
      x-event-categories: []
      x-stainless-empty-object: false
      x-title-plural: Check Transfer Deposits
    inbound_check_deposit_return_intention:
      additionalProperties: true
      description: An Inbound Check Deposit Return Intention is created when Increase receives an Inbound Check and the User requests that it be returned.
      example:
        inbound_check_deposit_id: inbound_check_deposit_zoshvqybq0cjjm31mra
        transfer_id: check_transfer_30b43acfu9vw8fyc4f5
      properties:
        inbound_check_deposit_id:
          description: The ID of the Inbound Check Deposit that is being returned.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Inbound Check Deposits
        transfer_id:
          anyOf:
          - description: The identifier of the Check Transfer object that was deposited.
            type: string
            x-documentation-priority: default
            x-id-reference-to: Check Transfers
          - type: 'null'
      required:
      - inbound_check_deposit_id
      - transfer_id
      title: Inbound Check Deposit Return Intention
      type: object
      x-event-categories: []
      x-stainless-empty-object: false
      x-title-plural: Inbound Check Deposit Return Intentions
    inbound_ach_transfer_return_intention:
      additionalProperties: true
      description: An Inbound ACH Transfer Return Intention is created when an ACH transfer is initiated at another bank and returned by Increase.
      example:
        inbound_ach_transfer_id: inbound_ach_transfer_tdrwqr3fq9gnnq49odev
      properties:
        inbound_ach_transfer_id:
          description: The ID of the Inbound ACH Transfer that is being returned.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Inbound ACH Transfers
      required:
      - inbound_ach_transfer_id
      title: Inbound ACH Transfer Return Intention
      type: object
      x-event-categories: []
      x-stainless-empty-object: false
      x-title-plural: Inbound ACH Transfer Return Intentions
    card_refund:
      additionalProperties: true
      description: Card Refunds move money back to the cardholder. While they are usually connected to a Card Settlement, an acquirer can also refund money directly to a card without relation to a transaction.
      example:
        amount: 100
        card_payment_id: card_payment_nd3k2kacrqjli8482ave
        cashback: null
        currency: USD
        id: card_refund_imgc2xwplh6t4r3gn16e
        interchange:
          amount: '0.137465'
          code: '271'
          currency: USD
        merchant_acceptor_id: '5665270011000168'
        merchant_category_code: '5734'
        merchant_city: New York
        merchant_country: US
        merchant_name: AMAZON.COM
        merchant_postal_code: '10045'
        merchant_state: NY
        network_identifiers:
          acquirer_business_id: '69650702'
          acquirer_reference_number: '83163715445437604865089'
          authorization_identification_response: ABC123
          transaction_id: '627199945183184'
        presentment_amount: 100
        presentment_currency: USD
        purchase_details:
          car_rental: null
          customer_reference_identifier: '51201'
          local_tax_amount: null
          local_tax_currency: usd
          lodging:
            check_in_date: '2023-07-20'
            daily_room_rate_amount: 1000
            daily_room_rate_currency: usd
            extra_charges: restaurant
            folio_cash_advances_amount: 0
            folio_cash_advances_currency: usd
            food_beverage_charges_amount: 0
            food_beverage_charges_currency: usd
            no_show_indicator: no_show
            prepaid_expenses_amount: 0
            prepaid_expenses_currency: usd
            room_nights: 1
            total_room_tax_amount: 100
            total_room_tax_currency: usd
            total_tax_amount: 100
            total_tax_currency: usd
          national_tax_amount: null
          national_tax_currency: usd
          purchase_identifier: '10203'
          purchase_identifier_format: order_number
          travel: null
        scheme_fees:
        - amount: '0.137465'
          created_at: '2020-01-31T23:59:59Z'
          currency: USD
          fee_type: visa_corporate_acceptance_fee
          fixed_component: null
          variable_rate: '0.0002'
        transaction_id: transaction_uyrp7fld2ium70oa7oi
        type: card_refund
      properties:
        amount:
          description: The amount in the minor unit of the transaction's settlement currency. For dollars, for example, this is cents.
          type: integer
          x-documentation-priority: default
        card_payment_id:
          description: The ID of the Card Payment this transaction belongs to.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Card Payments
        cashback:
          anyOf:
          - additionalProperties: false
            description: Cashback debited for this transaction, if eligible. Cashback is paid out in aggregate, monthly.
            example:
              amount: '0.137465'
              currency: USD
            properties:
              amount:
                description: The cashback amount given as a string containing a decimal number. The amount is a positive number if it will be credited to you (e.g., settlements) and a negative number if it will be debited (e.g., refunds).
                pattern: ^-?\d+(\.\d+)?$
                type: string
                x-documentation-priority: default
              currency:
                description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the cashback.
                enum:
                - USD
                type: string
                x-documentation-priority: default
                x-enum-descriptions:
                - US Dollar (USD)
            required:
            - amount
            - currency
            title: Card Refund Cashback
            type: object
            x-documentation-priority: default
            x-event-categories: []
            x-stainless-empty-object: false
            x-title-plural: Cashbacks
          - type: 'null'
        currency:
          description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction's settlement currency.
          enum:
          - USD
          type: string
          x-documentation-priority: default
          x-enum-descriptions:
          - US Dollar (USD)
        id:
          description: The Card Refund identifier.
          type: string
          x-documentation-priority: default
          x-id-reference-to: Card Refunds
        interchange:
          anyOf:
          - additionalProperties: false
            description: Interchange assessed as a part of this transaction.
            example:
              amount: '0.137465'
              code: '271'
              currency: USD
            properties:
              amount:
                description: The interchange amount given as a string containing a decimal number in major units (so e.g., "3.14" for $3.14). The amount is a positive number if it is credited to Increase (e.g., settlements) and a negative number if it is debited (e.g., refunds).
                pattern: ^-?\d+(\.\d+)?$
                type: string
                x-documentation-priority: default
              code:
                anyOf:
                - description: The card network specific interchange code.
                  type: string
                  x-documentation-priority: default
                - type: 'null'
              currency:
                description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the interchange reimbursement.
                enum:
                - USD
                type: string
                x-documentation-priority: default
                x-enum-descriptions:
                - US Dollar (USD)
            required:
            - amount
            - currency
            - code
            title: Card Refund Card Interchange
            type: object
            x-documentation-priority: default
            x-event-categories: []
            x-stainless-empty-object: false
            x-title-plural: Card Interchanges
          - type: 'null'
        merchant_acceptor_id:
          description: The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
          type: string
          x-documentation-priority: default
        merchant_category_code:
          description: The 4-digit MCC describing the merchant's business.
          type: string
          x-documentation-priority: default
        merchant_city:
          description: The city the merchant resides in.
          type: string
          x-documentation-priority: default
        merchant_country:
          description: The country the merchant resides in.
          type: string
          x-documentation-priority: default
        merchant_name:
          description: The name of the merchant.
          type: string
          x-documentation-priority: default
        merchant_postal_code:
          anyOf:
          - description: The merchant's postal code. For US merchants this is always a 5-digit ZIP code.
            type: string
            x-documentation-priority: default
          - type: 'null'
        merchant_state:
          anyOf:
          - description: The state the merchant resides in.
            type: string
            x-documentation-priority: default
          - type: 'null'
        network_identifiers:
          additionalProperties: false
          description: Network-specific identifiers for this refund.
          properties:
            acquirer_business_id:
              description: A network assigned business ID that identifies the acquirer that processed this transaction.
              type: string
              x-documentation-priority: default
            acquirer_reference_number:
              description: A globally unique identifier for this settlement.
              type: string
              x-documentation-priority: default
            authorization_identification_response:
              anyOf:
              - description: The randomly generated 6-character Authorization Identification Response code sent back to the acquirer in an approved response.
                type: string
                x-documentation-priority: default
              - type: 'null'
            transaction_id:
              anyOf:
              - description: A globally unique transaction identifier provided by the card network, used across multiple life-cycle requests.
                type: string
                x-documentation-priority: default
              - type: 'null'
          required:
          - transaction_id
          - acquirer_reference_number
          - acquirer_business_id
          - authorization_identification_response
          title: Card Refund NetworkIdentifiers
          type: object
          x-documentation-priority: default
          x-event-categories: []
          x-stainless-empty-object: false
          x-title-plural: NetworkIdentifiers
        presentment_amount:
          description: The amount in the minor unit of the transaction's presentment currency.
          type: integer
          x-documentation-priority: default
        presentment_currency:
          description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction's presentment currency.
          type: string
          x-documentation-priority: default
        purchase_details:
          anyOf:
          - additionalProperties: false
            description: Additional details about the card purchase, such as tax and industry-specific fields.
            example:
              car_rental: null
              customer_reference_identifier: '51201'
              local_tax_amount: null
              local_tax_currency: usd
              lodging:
                check_in_date: '2023-07-20'
                daily_room_rate_amount: 1000
                daily_room_rate_currency: usd
                extra_charges: restaurant
                folio_cash_advances_amount: 0
                folio_cash_advances_currency: usd
                food_beverage_charges_amount: 0
                food_beverage_charges_currency: usd
                no_show_indicator: no_show
                prepaid_expenses_amount: 0
                prepaid_expenses_currency: usd
                room_nights: 1
                total_room_tax_amount: 100
                total_room_tax_currency: usd
                total_tax_amount: 100
                total_tax_currency: usd
              national_tax_amount: null
              national_tax_currency: usd
              purchase_identifier: '10203'
              purchase_identifier_format: order_number
              travel: null
            properties:
              car_rental:
                anyOf:
                - additionalProperties: false
                  description: Fields specific to car rentals.
                  properties:
                    car_class_code:
                      anyOf:
                      - description: Code indicating the vehicle's class.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    checkout_date:
                      anyOf:
                      - description: Date the customer picked up the car or, in the case of a no-show or pre-pay transaction, the scheduled pick up date.
                        format: date
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    daily_rental_rate_amount:
                      anyOf:
                      - description: Daily rate being charged for the vehicle.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    daily_rental_rate_currency:
                      anyOf:
                      - description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the daily rental rate.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    days_rented:
                      anyOf:
                      - description: Number of days the vehicle was rented.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    extra_charges:
                      anyOf:
                      - description: Additional charges (gas, late fee, etc.) being billed.
                        enum:
                        - no_extra_charge
                        - gas
                        - extra_mileage
                        - late_return
                        - one_way_service_fee
                        - parking_violation
                        type: string
                        x-documentation-priority: default
                        x-enum-descriptions:
                        - No extra charge
                        - Gas
                        - Extra mileage
                        - Late return
                        - One way service fee
                        - Parking violation
                      - type: 'null'
                    fuel_charges_amount:
                      anyOf:
                      - description: Fuel charges for the vehicle.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    fuel_charges_currency:
                      anyOf:
                      - description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel charges assessed.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    insurance_charges_amount:
                      anyOf:
                      - description: Any insurance being charged for the vehicle.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    insurance_charges_currency:
                      anyOf:
                      - description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the insurance charges assessed.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    no_show_indicator:
                      anyOf:
                      - description: An indicator that the cardholder is being billed for a reserved vehicle that was not actually rented (that is, a "no-show" charge).
                        enum:
                        - not_applicable
                        - no_show_for_specialized_vehicle
                        type: string
                        x-documentation-priority: default
                        x-enum-descriptions:
                        - Not applicable
                        - No show for specialized vehicle
                      - type: 'null'
                    one_way_drop_off_charges_amount:
                      anyOf:
                      - description: Charges for returning the vehicle at a different location than where it was picked up.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    one_way_drop_off_charges_currency:
                      anyOf:
                      - description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the one-way drop-off charges assessed.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    renter_name:
                      anyOf:
                      - description: Name of the person renting the vehicle.
                        type: string
                        x-documentation-priority: default
                      - type: 'null'
                    weekly_rental_rate_amount:
                      anyOf:
                      - description: Weekly rate being charged for the vehicle.
                        type: integer
                        x-documentation-priority: default
                      - type: 'null'
                    weekly_rental_rate_currency:
                      anyOf:
                      - description: The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the weekly rental rate.
                        type: string
                        x-docu

# --- truncated at 32 KB (292 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/increase/refs/heads/main/openapi/increase-transactions-api-openapi.yml