New: Send money to 40+ African countries instantly with Payyvion. Learn more →

Payyvion Payyvion

Developer Docs

Everything you need to build with Payyvion.

Getting Started

Welcome to Payyvion! This guide will help you make your first API request and integrate Payyvion into your app.

1. Create an Account

Sign up for a Payyvion account and retrieve your API keys from the dashboard ↗.

2. Make Your First Request

Payyvion provides a RESTful API. You can make requests using any HTTP client. Here’s an example using cURL to create a wallet:

POST /v1/wallets curl
curl https://api.payyvion.com/v1/wallets \
  -X POST \
  -H "Authorization: Bearer sk_live_1234567890abcdef" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Primary Wallet",
    "currency": "eUSD"
  }'

If successful, you’ll receive a response like this:

200 OK json
{
  "id": "wlt_8h3e5f17",
  "name": "Primary Wallet",
  "currency": "eUSD",
  "balance": "0.00",
  "status": "active",
  "created_at": "2024-05-20T10:15:30Z"
}

3. What’s Next?

Explore the docs to learn more about what you can build with Payyvion.

Need help?

Check out our or reach out to our team.