Payroo Developer Portal

Accept payments, send payouts, purchase e-load, and pay bills — all through one API.

Base URL

https://api.payroo.xyz

Auth

Bearer API Key

Format

JSON / centavos

Quick Start

# 1. Get your API key from the dashboard
# 2. Create a QR Ph payment

curl -X POST https://api.payroo.xyz/v1/payments \
  -H "Authorization: Bearer sk_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: order-001" \
  -d '{
    "type": "QRPH",
    "amount": 10000,
    "currency": "PHP",
    "reference_id": "ORDER-001"
  }'