Infracard

Getting Started

Start building with the Infracard Merchant API

Overview

The Infracard Merchant API lets you issue cards, manage cardholders, and process transactions programmatically. All API access is over HTTPS, and all request and response bodies are JSON.

Base URL

https://api.infracard.co

Your First API Call

Once you have your API key, you can make your first request:

GET/merchants/balance

Returns the current available merchant balance used to fund issuance and deposits.

availableBalancestring

The current available balance (e.g. "1000.00")

currencystring

ISO 4217 currency code

curl -X GET https://api.infracard.co/merchants/balance \
  -H "x-api-key: your-api-key"

This returns your merchant balance with currency info.

Next Steps