US Bancorp Push to Card Payments API

The Push to Card Payments API from US Bancorp — 2 operation(s) for push to card payments.

Operations 2

POST /push-to-card/payments Initiate Push to Card Payment #
GET /push-to-card/payments/{paymentId} Get Push to Card Payment Status #

Documentation

Specifications

Schemas & Data

Other Resources

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/us-bancorp-push-to-card-payments-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

us-bancorp-push-to-card-payments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: US Bank Corporate Account Information Accounts Push to Card Payments API
  description: The Corporate Account Information API provides U.S. Bank corporate customers with programmatic access to deposit account balances and transaction data. Retrieve current-day and previous-day balances for up to 50 accounts, transaction history up to 60 days (with optional 12 or 24-month retention), and account statements.
  version: 1.0.0
  contact:
    name: US Bank API Onboarding Team
    url: https://developer.usbank.com/contact
    email: apionboarding@usbank.com
  termsOfService: https://developer.usbank.com/terms
servers:
- url: https://api.usbank.com/v1
  description: US Bank production API
security:
- OAuth2MFA: []
tags:
- name: Push to Card Payments
paths:
  /push-to-card/payments:
    post:
      operationId: initiatePushToCardPayment
      summary: Initiate Push to Card Payment
      description: Initiate an instant fund disbursement to a Visa or Mastercard debit card. The transaction limit is $125,000 per transaction. All originated Push to Card transactions are irrevocable once submitted.
      tags:
      - Push to Card Payments
      parameters:
      - name: Content-Type
        in: header
        required: true
        schema:
          type: string
          default: application/json
      - name: Correlation-ID
        in: header
        required: true
        description: Unique identifier for request/response correlation
        schema:
          type: string
          format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PushToCardRequest'
      responses:
        '201':
          description: Push to Card payment initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PushToCardResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Payment cannot be processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /push-to-card/payments/{paymentId}:
    get:
      operationId: getPushToCardPaymentStatus
      summary: Get Push to Card Payment Status
      description: Retrieve the status and details of a Push to Card payment.
      tags:
      - Push to Card Payments
      parameters:
      - name: paymentId
        in: path
        required: true
        description: Unique payment identifier
        schema:
          type: string
      - name: Correlation-ID
        in: header
        required: true
        schema:
          type: string
          format: uuid
      - name: Accept
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Payment status and details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PushToCardResponse'
        '404':
          description: Payment not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PushToCardResponse:
      type: object
      description: Push to Card payment status
      properties:
        paymentId:
          type: string
          description: U.S. Bank payment identifier
        clientReferenceId:
          type: string
          description: Client-assigned reference ID
        status:
          type: string
          enum:
          - PENDING
          - COMPLETED
          - FAILED
          - DECLINED
          description: Payment status
        amount:
          type: number
          format: double
          description: Payment amount
        currency:
          type: string
          description: Currency code
        initiatedAt:
          type: string
          format: date-time
          description: Payment initiation timestamp
        completedAt:
          type: string
          format: date-time
          description: Payment completion timestamp
        networkTransactionId:
          type: string
          description: Card network transaction ID
      required:
      - paymentId
      - status
      - amount
      - initiatedAt
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        correlationId:
          type: string
    PushToCardRequest:
      type: object
      description: Request to initiate a Push to Card payment
      properties:
        sourceAccountNumber:
          type: string
          description: U.S. Bank source account number to debit
        recipientCardNumber:
          type: string
          description: Recipient's Visa or Mastercard debit card number (16 digits)
        recipientName:
          type: string
          description: Name of the recipient cardholder
        amount:
          type: number
          format: double
          description: Payment amount in USD (max $125,000)
          maximum: 125000
          minimum: 0.01
        currency:
          type: string
          description: ISO 4217 currency code
          default: USD
        description:
          type: string
          description: Payment description or memo (max 140 characters)
          maxLength: 140
        clientReferenceId:
          type: string
          description: Client-assigned reference identifier
      required:
      - sourceAccountNumber
      - recipientCardNumber
      - recipientName
      - amount
  securitySchemes:
    OAuth2MFA:
      type: oauth2
      description: OAuth 2.0 with MFA using SinglePoint credentials
      flows:
        authorizationCode:
          authorizationUrl: https://api.usbank.com/oauth/authorize
          tokenUrl: https://api.usbank.com/oauth/token
          scopes:
            account.read: Read account information
            transaction.read: Read transaction data