For Agents
Initiate PSD2 open-banking payments and refunds, browse supported banks, and query payment status across the Nuapay TPP network.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Nuapay TPP API Specification, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Nuapay TPP API Specification API.
Initiate a Pay-by-Bank payment from a payer's bank account
Retrieve a payment record and its current open-banking status
List all payments created by a merchant or partner
Retry a failed or expired payment initiation
GET STARTED
Use for: Initiate a pay-by-bank payment for a customer, List all banks available for open banking initiation, Get the status of a Nuapay payment by ID, Retrieve the full event history of an open-banking payment
Not supported: Does not handle card processing, KYC onboarding, or accounting reconciliation — use for PSD2 open-banking payment initiation and refunds only.
Jentic publishes the only available OpenAPI document for Nuapay TPP API Specification, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Nuapay TPP API Specification, keeping it validated and agent-ready. Nuapay is a regulated PSD2 third-party provider that initiates open-banking payments directly from a payer's bank account across the UK and EU. The TPP API exposes payment initiation, refund, payment history, and bank discovery endpoints for merchants and partner integrators that want to bypass card rails. It is used by SaaS billing, e-commerce checkouts, and B2B collections where Pay-by-Bank is preferred over card networks.
Refund a previously settled open-banking payment
Browse supported bank families and individual banks for payer selection
Inspect the event history of a specific payment for audit and reconciliation
Patterns agents use Nuapay TPP API Specification API for, with concrete tasks.
★ Pay-by-Bank Checkout
Merchants offer Pay-by-Bank as a checkout option to avoid card processing fees. The flow starts with POST /payments, the customer authenticates at their bank, and the merchant polls GET /payments/{paymentId} until the open-banking status confirms settlement. Nuapay handles the regulated AISP and PISP flows in the background.
Call POST /payments with the order amount and payer bank, then poll GET /payments/{paymentId} until the status reaches settled
Bank Selection and Discovery
Checkout pages render a bank picker driven by GET /bankfamilies and GET /banks so the payer can choose their institution before authorisation. The endpoints return logos, identifiers, and payment-rail support that the front end uses to filter selectable banks.
Call GET /bankfamilies, then GET /banks to populate a bank picker for an open-banking checkout
Refunds and Payment History
Operations teams reconcile open-banking flows by calling GET /payments/{paymentId}/history for the full event timeline and POST /payments/{paymentId}/refunds to push money back to the payer. Refunds and history are scoped to a specific payment ID to preserve audit trails.
Call POST /payments/{paymentId}/refunds with the refund amount, then GET /payments/{paymentId}/refunds/{refundId} to confirm status
Agent-Driven Open-Banking Workflow
An AI agent initiates Pay-by-Bank checkouts on behalf of a finance team, polls payment status, and triggers refunds when an order is cancelled. Through Jentic the agent searches for 'initiate open banking payment', loads the POST /payments schema, and executes without learning Nuapay's TPP-specific OAuth flow.
Search Jentic for 'initiate open banking payment', load the schema for POST /payments, and execute with the merchant ID and amount
12 endpoints — jentic publishes the only available openapi specification for nuapay tpp api specification, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/payments
Create an open-banking payment
/payments/{paymentId}
Retrieve a payment by ID
/payments/{paymentId}
Retry a payment
/payments/{paymentId}/history
Retrieve payment event history
/payments/{paymentId}/refunds
Refund a payment
/bankfamilies
List bank families
/banks
List supported banks
/payments
Create an open-banking payment
/payments/{paymentId}
Retrieve a payment by ID
/payments/{paymentId}
Retry a payment
/payments/{paymentId}/history
Retrieve payment event history
/payments/{paymentId}/refunds
Refund a payment
Three things that make agents converge on Jentic-routed access.
Credential isolation
Nuapay merchant and partner credentials, including API keys and OAuth2 client secrets, are stored encrypted in the Jentic vault. Agents receive scoped access tokens, so the underlying TPP credentials never enter the agent's context.
Intent-based discovery
Agents search Jentic with intents like 'initiate open banking payment' or 'refund pay by bank' and Jentic returns the matching Nuapay operation with its input schema.
Time to first call
Direct Nuapay integration: 5-10 days for OAuth2 client setup, bank discovery, and refund handling. Through Jentic: under an hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Stripe
Card-first payment processor with optional bank-debit rails
Choose Stripe for card-led checkout with global coverage; choose Nuapay when Pay-by-Bank is the primary rail and TPP licensing is required.
Plaid
Bank-account verification and balance data that pairs with open-banking payments
Use Plaid to verify account ownership and balance before triggering a Nuapay open-banking payment.
Adyen Checkout
Global checkout API with open-banking method support among many
Pick Adyen for unified global checkout; pick Nuapay when the merchant wants a dedicated UK and EU open-banking specialist.
Specific to using Nuapay TPP API Specification API through Jentic.
Why is there no official OpenAPI spec for Nuapay TPP API Specification?
Nuapay does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Nuapay TPP API Specification 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 Nuapay TPP API use?
The spec defines four schemes: MerchantApiKey and PartnerApiKey for HTTP key auth, plus MerchantOAuth2 and PartnerOAuth2 client-credentials flows. Through Jentic the appropriate credential is stored in the vault and injected at execution, so the agent never holds the raw key or token.
Can I retry a payment that failed at the bank?
Yes. PATCH /payments/{paymentId} retries a payment whose initiation expired or failed before the payer authenticated. Use this rather than creating a brand-new payment so the audit trail remains continuous.
How do I refund an open-banking payment through Jentic?
Search Jentic for 'refund open banking payment', load the schema for POST /payments/{paymentId}/refunds, and execute with the refund amount. Jentic injects the merchant credential and returns the created refund record.
What are the rate limits for the Nuapay TPP API?
The OpenAPI spec does not declare explicit rate limits. Nuapay applies regulated TPP limits and merchant-tier quotas in production; check your Nuapay dashboard or contact your account manager for the limits attached to your client ID.
How do I show a bank picker on my checkout?
Call GET /bankfamilies to list grouped institutions, then GET /banks to render individual selectable banks with logos and identifiers. Filter by country and the payment rails the bank supports before showing the picker.
/bankfamilies
List bank families
/banks
List supported banks