Skip to content

Paylinker DocumentationThe simple, direct payment partner

Paylinker is the payment partner you deserve. We strive for simplicity and straight-forwardness on our APIs.

Paylinker

Integrate in minutes, not weeks ⚡️

Our SDKs are designed to be intuitive and idiomatic. We support all major languages so you can build with what you know best.

Everything you need

Stop reinventing the wheel. Paylinker provides the building blocks you need to create the perfect checkout experience.

  • Type-safe definitions
  • Automatic retries & error handling
  • Webhook signature verification
  • Ready-made UI components
js
// Create a checkout session
const response = await fetch('https://api.paylinker.com/create-checkout', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'x-api-key': 'your_api_key'
  },
  body: JSON.stringify({
    amount: 2000,
    currency: 'usd',
    items: [{ name: 'Premium Plan', quantity: 1 }],
    success_url: 'https://example.com/success',
  })
});

const session = await response.json();
console.log(session);

Ready to start building? 🚀

Join thousands of businesses processing payments with Paylinker.

Get Started Now

Released under the MIT License.