An investment in knowledge pays the best interest.
Benjamin Franklin

Build with PortalPay

Trustless, permissionless payment infrastructure for accepting cryptocurrency payments with automatic payment splitting.

Why Build with PortalPay?

Trustless & Permissionless

No intermediaries, no gatekeeping. Direct blockchain transactions with full transparency.

Subscription-Based Auth

Secure APIM subscription keys linked to your wallet. Manage keys through the developer dashboard.

Automatic Splitting

Configure payment distribution via smart contracts. All splits happen on-chain.

Quick Example

Create Your First OrdercURL
# 1. Create a product
curl -X POST https://pay.ledger1.ai/api/inventory \
  -H "Content-Type: application/json" \
  -H "Ocp-Apim-Subscription-Key: $APIM_SUBSCRIPTION_KEY" \
  -d '{
    "sku": "ITEM-001",
    "name": "Sample Product",
    "priceUsd": 25.00,
    "stockQty": 100,
    "taxable": true
  }'

# 2. Generate an order
curl -X POST https://pay.ledger1.ai/api/orders \
  -H "Content-Type: application/json" \
  -H "Ocp-Apim-Subscription-Key: $APIM_SUBSCRIPTION_KEY" \
  -d '{
    "items": [{"sku": "ITEM-001", "qty": 1}],
    "jurisdictionCode": "US-CA"
  }'

# 3. Payment URL
# https://pay.ledger1.ai/pay/{receiptId}

Ready to Get Started?

Follow our Quick Start Guide to make your first API call in 5 minutes.

Start Building →
Developers | PortalPay API Documentation • PortalPay