Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.useaxra.com/llms.txt

Use this file to discover all available pages before exploring further.

Welcome to Axra

Axra is a financial infrastructure platform that lets you accept payments, manage wallets, and build banking products via API.

Accept Payments

Accept card payments, mobile money, and bank transfers across Africa and globally.

Treasury (BaaS)

Build banking products for your users — KYC, wallets, payouts, and compliance built in.

API Reference

Complete API reference with code examples in every language.

SDKs

Node.js, Python, Pay.js, and CLI tools to integrate in minutes.

Quick start

1

Get your API keys

Sign up at app.useaxra.com to get your test and live API keys.
2

Install the SDK

npm install @axra/node
3

Make your first API call

import { Axra } from '@axra/node';

const axra = new Axra('sk_test_...');
const payment = await axra.payments.create({
  amount: 5000,
  currency: 'USD',
});
console.log(payment);

Base URL

All API requests are made to:
https://api.useaxra.com/api/v1

Authentication

Authenticate by including your API key in the x-api-key header (merchant endpoints) or Authorization: Bearer header (Treasury endpoints).
curl https://api.useaxra.com/api/v1/treasury/whoami \
  -H "Authorization: Bearer sk_test_..."