Developers

Stripe-style integrations for non-Stripe businesses.

REST APIs, hosted checkout and low-code widgets so you can keep your stack clean — even when your MCC, risk profile or GEO is complex.

Example: create a payment

Simple JSON request — swap keys and endpoints based on your assigned processor.

POST /v1/payments
Authorization: Bearer <live_api_key>
Content-Type: application/json

{
  "amount": 14900,
  "currency": "usd",
  "capture": true,
  "descriptor": "AXIS*YOURBRAND",
  "source": {
    "card_number": "4111 1111 1111 1111",
    "exp_month": 12,
    "exp_year": 2028,
    "cvc": "123"
  },
  "metadata": {
    "order_id": "AX-10492",
    "customer_id": "CUST-22018"
  }
}