API Keys

Authenticate API requests with your keys

Create New Key

Active Keys

No API keys yet. Create one above.

Usage

cURL
curl https://api.finvexpay.com/v1/orders \
  -H "X-Finvex-Key: finvex_test_KEY_ID:KEY_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"amount": 50000, "currency": "INR"}'
Node.js
const finvex = require('finvex-node')('finvex_test_KEY_ID:KEY_SECRET')
const order = await finvex.orders.create({ amount: 50000, currency: 'INR' })
Python
import finvex
client = payos.Client('finvex_test_KEY_ID:KEY_SECRET')
order = client.orders.create(amount=50000, currency='INR')