← All categories

Payments

Accept payments, create payment links, and send invoices

Create payment links, checkout sessions, and invoices to collect money

payment-links

Recommended

Stripe

by stripe.com

Industry standard. CLI for quick payment links, SDK for embedded checkouts, webhook support for payment confirmations.

Auth: api_key
Setup: low
Pricing: 2.9% + $0.30 per transaction

Example API call

POST https://api.stripe.com/v1/payment_links

{
  "line_items[0][price]": "price_XXX",
  "line_items[0][quantity]": 1
}

// Response:
{
  "id": "plink_abc123",
  "url": "https://buy.stripe.com/abc123"
}
View full docs →