For Agents
Create cardholders, issue cards, activate them, and read transaction history for an Apto Payments programme.
Get started with Apto Payments Card Issuance API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"issue a debit card to a new cardholder"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Apto Payments Card Issuance API API.
Register a new cardholder with KYC details for an issuance programme
Issue a debit or prepaid card linked to an existing cardholder
Activate a freshly issued card so it can be used for transactions
Retrieve cardholder records and card details by ID for support flows
GET STARTED
Use for: I need to issue a new debit card to a cardholder, Create a cardholder record in Apto Payments, Activate a card that was just issued, List all transactions on a specific Apto card
Not supported: Does not handle merchant payment acceptance, KYC verification, or treasury accounts — use for cardholder and card issuance management only.
Jentic publishes the only available OpenAPI document for Apto Payments Card Issuance API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Apto Payments Card Issuance API, keeping it validated and agent-ready. Apto Payments is a card-issuing platform that lets fintechs and embedded-finance products issue branded debit and prepaid cards to end users. The API exposes endpoints for managing cardholders, issuing and activating cards, and listing card transactions. It uses bearer-token authentication and is structured around three primary resources: cardholders, cards, and transactions.
List the transactions posted against a specific card for reconciliation
Patterns agents use Apto Payments Card Issuance API API for, with concrete tasks.
★ Issue Cards to New Cardholders
Onboard a new user, create their cardholder record, then issue a card linked to that record so they can start spending. Embedded-finance products use this to bundle a payment card into a broader product experience without becoming a card issuer themselves. Apto handles the network, BIN sponsor, and compliance plumbing in the background.
Create a cardholder via POST /cardholders with the user's KYC fields, then call POST /cards with that cardholder_id to issue a card and return the card_id.
Activate Cards Post-Delivery
When a physical card arrives at the cardholder's address, mark it active so the card network will authorise transactions. Issuance products use this as the trigger for activation flows in a mobile app or IVR. Apto's POST /cards/{card_id}/activate endpoint is the single call that flips the card from issued to live.
Call POST /cards/{card_id}/activate for the card the user has confirmed they received, then verify the activation succeeded.
Transaction History for Customer Support
When a cardholder calls support about a charge, look up the transactions on their card to confirm what posted, when, and from which merchant. Support agents and chatbots use this to triage disputes and refunds before escalating. The list-transactions endpoint returns the transaction stream for a specific card.
Call GET /cards/{card_id}/transactions to retrieve the transaction list for the card and return the most recent 10 entries.
AI Agent Card Issuance via Jentic
An onboarding agent that creates a fintech account end-to-end can call Apto through Jentic to issue and activate a card without the developer wiring up the bearer-token flow. The agent searches for the issuance operation, loads the schema, and executes the create-cardholder and create-card calls in sequence. Jentic resolves the bearer token from its credential vault.
Use Jentic search 'issue a debit card to a new cardholder', load the schemas for POST /cardholders and POST /cards, then execute both calls and return the new card_id.
7 endpoints — jentic publishes the only available openapi specification for apto payments card issuance api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/cardholders
Create a new cardholder
/cardholders
List cardholders
/cardholders/{cardholder_id}
Get a cardholder by ID
/cards
Issue a card
/cards/{card_id}
Get card details
/cards/{card_id}/activate
Activate a card
/cards/{card_id}/transactions
List transactions for a card
/cardholders
Create a new cardholder
/cardholders
List cardholders
/cardholders/{cardholder_id}
Get a cardholder by ID
/cards
Issue a card
/cards/{card_id}
Get card details
/cards/{card_id}/activate
Three things that make agents converge on Jentic-routed access.
Credential isolation
Apto Payments bearer tokens are stored encrypted in the Jentic vault. Agents receive scoped access tokens — the raw bearer token never enters the agent's context.
Intent-based discovery
Agents search by intent (e.g. 'issue a debit card to a new cardholder') and Jentic returns matching Apto operations with their input schemas, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Apto integration: 3-5 days for auth, cardholder KYC mapping, and transaction reconciliation. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Stripe Issuing offers card issuance alongside payments, accounts, and treasury — broader scope than Apto's specialist focus.
Choose Stripe Issuing when the product also needs payment acceptance and treasury features in one platform; pick Apto for a programme-manager-led issuing setup.
Stripe API
Pair Apto card issuance with Stripe to accept inbound funding payments before loading the issued card.
Use Stripe to accept funding from end users, then call Apto to issue and load the card backed by those funds.
Shopify Admin API
When card issuance powers a merchant rewards card, Shopify exposes order and customer data that drives the load amount.
Use Shopify to read order totals or loyalty balances, then call Apto to issue or load a corresponding card.
Specific to using Apto Payments Card Issuance API API through Jentic.
Why is there no official OpenAPI spec for Apto Payments Card Issuance API?
Apto Payments does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Apto Payments Card Issuance API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Apto Payments Card Issuance API use?
Apto Payments uses HTTP bearer authentication. The bearer token is sent in the Authorization header on every request. Through Jentic, the bearer token is stored encrypted in the vault and never enters the agent's context.
Can I issue a physical debit card with this API?
Yes. Call POST /cards with a valid cardholder_id and card configuration; Apto handles the BIN sponsor and network-side issuance. After delivery, call POST /cards/{card_id}/activate to make the card live.
How do I list transactions for a specific card?
Call GET /cards/{card_id}/transactions with the card identifier returned by the issuance step. The endpoint returns the transaction stream that has posted against that card.
What are the rate limits for the Apto Payments API?
The OpenAPI spec does not define explicit rate limits. Apto Payments enforces programme-level limits negotiated as part of your card-issuing agreement; check your Apto contract or programme manager for the exact thresholds.
How do I issue a card through Jentic?
Install Jentic with pip install jentic, search for 'issue a debit card to a new cardholder', load the schemas for POST /cardholders and POST /cards, then execute both calls in sequence. Jentic resolves the bearer token automatically.
Activate a card
/cards/{card_id}/transactions
List transactions for a card