Skip to content

Quickstart

This quickstart walks through the shape of a typical integration. Steps and responses below are illustrative placeholders.

Requirement Notes
API key See Authentication
HTTPS endpoint Required for receiving webhooks
Node.js 22+ Only if using the (placeholder) SDK
Terminal window
curl https://api.example.com/v1/payment-links \
-H "Authorization: Bearer sk_test_placeholder" \
-H "Content-Type: application/json" \
-d '{"amount": 2000, "currency": "usd"}'
{
"id": "plink_placeholder_123",
"amount": 2000,
"currency": "usd",
"status": "active"
}

Continue to Authentication.