/v1/paymentsCreate Payment
Create a payment request and initiate a secure transaction.
Finunique
Pay. Book. Move forward.
Simple, secure and scalable APIs for payments, payouts, wallets and financial infrastructure. Everything you need to integrate Finunique into your products.
{
"amount": 2500,
"currency": "INR",
"customer_id": "cus_92831",
"description": "Order payment"
}Developer documentation
Our APIs provide a simple way to connect your applications with powerful financial infrastructure. Create payments, manage payouts, access balances and build custom financial workflows.
Follow our guides, explore endpoint references and use the code examples to move from your first request to production integration quickly.
Quick start
Get started with your API credentials and make your first request in just a few simple steps.
const response = await fetch(
"https://api.finunique.com/v1/payments",
{
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
amount: 2500,
currency: "INR",
customer_id: "cus_92831"
})
}
);
const payment = await response.json();
console.log(payment);Authentication
Authenticate API requests using your secret API key. Keep your credentials secure and never expose secret keys in client-side applications.
Authorization:
Bearer YOUR_API_KEYAPI reference
Use our APIs to manage payments, payouts, balances and beneficiaries from your applications.
/v1/paymentsCreate a payment request and initiate a secure transaction.
/v1/payments/{id}Retrieve the current status and details of a payment.
/v1/payoutsInitiate a payout to a beneficiary or bank account.
/v1/payouts/{id}Retrieve payout details, status and transaction information.
/v1/balanceRetrieve your available wallet and settlement balance.
/v1/beneficiariesAdd and manage beneficiaries for secure payouts.
Request
Send structured JSON payloads with the required parameters for each endpoint.
{
"amount": 2500,
"currency": "INR",
"customer_id": "cus_92831",
"description": "Order payment"
}Response
Receive structured responses with transaction identifiers, statuses and relevant payment information.
{
"id": "pay_982731",
"status": "success",
"amount": 2500,
"currency": "INR",
"created_at": "2026-09-03T10:30:00Z"
}Developer experience
Powerful infrastructure underneath. Simple APIs on top.
Integrate our APIs into your application with simple REST endpoints and predictable responses.
Authentication, encryption and secure communication help protect every API interaction.
Clear documentation, examples and consistent API patterns make integration easier.
Infrastructure designed to support growing transaction volumes and business requirements.
Integration workflow
Follow a straightforward integration workflow and get your financial product connected with our infrastructure.
Start integratingCreate your developer account and access your API credentials.
Secure your application using your API keys and environment variables.
Use our API reference and examples to connect your application.
Test your integration and move to production when you're ready.
API architecture
Your website, mobile application or backend sends secure requests.
Our API processes requests and connects your application with financial infrastructure.
Payments, payouts, balances and transaction data are securely processed.
Security
Protect your financial workflows with secure authentication, encrypted communication and controlled access.
Encrypted communication
Secure API authentication
Controlled access
Structured responses
Start building
Explore our APIs, connect your application and start building powerful financial experiences today.