Quickstart
Overview
Section titled “Overview”This quickstart walks through the shape of a typical integration. Steps and responses below are illustrative placeholders.
Prerequisites
Section titled “Prerequisites”| Requirement | Notes |
|---|---|
| API key | See Authentication |
| HTTPS endpoint | Required for receiving webhooks |
| Node.js 22+ | Only if using the (placeholder) SDK |
Make a request
Section titled “Make a request”curl https://api.example.com/v1/payment-links \ -H "Authorization: Bearer sk_test_placeholder" \ -H "Content-Type: application/json" \ -d '{"amount": 2000, "currency": "usd"}'const response = await fetch("https://api.example.com/v1/payment-links", { method: "POST", headers: { Authorization: "Bearer sk_test_placeholder", "Content-Type": "application/json", }, body: JSON.stringify({ amount: 2000, currency: "usd" }),});Example response
Section titled “Example response”{ "id": "plink_placeholder_123", "amount": 2000, "currency": "usd", "status": "active"}Next steps
Section titled “Next steps”Continue to Authentication.