API Reference

Explore our comprehensive API documentation to build powerful crypto payment solutions.

Authentication

Authenticate your API requests using your API keys.

POST/v1/auth

Create a new auth object.

Request
curl https://api.cryptopay.com/v1/auth \
  -u sk_test_...: \
  -d amount=1000 \
  -d currency=usd

Charges

Create and manage payments from your customers.

POST/v1/charges

Create a new charges object.

Request
curl https://api.cryptopay.com/v1/charges \
  -u sk_test_...: \
  -d amount=1000 \
  -d currency=usd

Payouts

Send crypto to external wallets programmatically.

POST/v1/payouts

Create a new payouts object.

Request
curl https://api.cryptopay.com/v1/payouts \
  -u sk_test_...: \
  -d amount=1000 \
  -d currency=usd