Introduction

Send invoices, process payments, and manage subscriptions with the Acme API

Acme is a payments API for developers. Accept payments, send invoices, and manage subscriptions — all through a single REST API.

Get your API key

Create an account and make your first API call in under 5 minutes.

API Reference

Endpoints, parameters, and response schemas for every resource.

Configuration

Customize your docs site — branding, navigation, and themes.

Components

Cards, callouts, tabs, steps, and 20+ more MDX components.

How it works

1
Install the SDK
npm install acme-sdk
2
Create a payment
import { Acme } from 'acme-sdk';

const acme = new Acme('sk_live_...');

const payment = await acme.payments.create({
  amount: 2500,
  currency: 'usd',
  customer_id: 'cus_abc123',
});
3
Handle the response
console.log(payment.id);     // "pay_1a2b3c"
console.log(payment.status); // "succeeded"

This is a starter template. Replace this content with your own product documentation — the components and layout are ready to use.