Skip to content

Latest commit

 

History

History
159 lines (137 loc) · 7.16 KB

File metadata and controls

159 lines (137 loc) · 7.16 KB
title Monetize your product in a day.
description Set up in minutes and start selling the same day. Card, Apple Pay, and Google Pay, with subscriptions, tax, invoices, and payouts all handled for you.

Getting paid shouldn't be harder than building, but for most founders it is: subscriptions, global cards, sales tax, chargebacks, invoices. None of it is your product, and all of it stands between you and revenue. AgentaOS runs the whole money layer so you never build a billing team to get paid.

Paste this into Cursor or Claude Code and it sets up billing and hands you a live checkout link:
Read https://agentaos.ai/SKILL.md and set up AgentaOS for me.

Start where you are

A shareable URL you can charge many times. No code to share it. Recurring billing with automatic renewals and tax handled. Send a tax-correct invoice, paid on the same secure checkout. Point Claude or Cursor at AgentaOS and let it operate the store.

What is AgentaOS?

AgentaOS is the billing and payments platform for AI founders, and a Merchant of Record. That means we become the legal seller of your product: your buyer pays AgentaOS, and we handle the payment, the VAT, the invoice, and the payout to you. You never register for tax abroad, file a cross-border return, or reconcile three processors. As the registered seller of record we carry the payment and tax liability, not you, and we are PCI-compliant and bank-grade secure. See How it works.

Why founders switch

Cross-border VAT means registering and filing in every country you sell to. As your Merchant of Record, AgentaOS calculates, collects, and remits it, so you never file a cross-border return again. Card, Apple Pay, and Google Pay settle to one balance through one typed SDK, with tax and invoicing built in. No stitching a processor, a tax engine, and an invoicing tool together yourself. Everything, from creating a product to sending a receipt, works over a type-safe SDK, a CLI, and an MCP server, so your AI agents can run the store while you ship.

Core features

Create a shareable link or reusable product. One-time or subscription. No code required. Recurring billing with automatic renewals. List, inspect, and cancel from the API, CLI, or dashboard. Tax-correct invoices issued automatically, with a PDF and a CSV export for accounting. Every payment gets an emailed receipt. Download or resend the PDF any time. Every buyer who paid you, with email, country, and VAT number. Get notified the moment a checkout completes. Signed and verifiable.

Developer tools

`@agentaos/pay`. Type-safe, zero runtime dependencies, full API coverage. `agenta`. Manage payments, subscriptions, customers, and invoices from the terminal, with `--json` for scripts. Connect Claude, Cursor, or Windsurf and let your AI agents run your store.

AI agent integration

Your AI agents can set up and operate AgentaOS on their own. No dashboards, no clicking.

Read https://agentaos.ai/SKILL.md and set up AgentaOS for me

Give this to any AI coding agent (Claude, Cursor, Copilot, Windsurf) and it will install the CLI, sign you in, create your first product and share the link, and wire up webhooks in your codebase.

Quick start

Sign up at [app.agentaos.ai](https://app.agentaos.ai). No card required. You start in test mode. Grab your test key from Settings. Keys prefixed `sk_test_` use test mode; `sk_live_` goes to production. ```bash SDK npm install @agentaos/pay ``` ```bash CLI curl -fsSL https://agentaos.ai/install | bash agenta login ``` ```typescript SDK import { AgentaOS } from '@agentaos/pay'; const agenta = new AgentaOS('sk_test_...');
const link = await agenta.paymentLinks.create({
  amount: 49.00,          // decimal currency units, not cents
  currency: 'EUR',
  description: 'Pro plan',
});
console.log(link.checkoutUrl); // share this anywhere
```
```bash CLI
agenta pay checkout -a 49 -c EUR -d "Pro plan"
```
</CodeGroup>
Listen for `checkout.session.completed` to sync your app. See [Webhooks](/payments/webhooks) for signature verification.

FAQ

Minutes in test mode. Create an account, grab a test key, and create your first checkout. Going live needs a short business verification, see [Account review](/mor/account-review). Card, Apple Pay, and Google Pay. Cards work in 135+ currencies, from buyers worldwide. Cards reach buyers in 135+ currencies. We handle destination VAT for the EU (via Estonia OSS) today, and add jurisdictions as we grow. See [Supported countries](/mor/supported-countries). Yes. Point any AI agent at `SKILL.md`, or connect the MCP server, and it can create products, read customers and subscriptions, and send receipts on your behalf. AgentaOS is the Merchant of Record, so we appear as the seller. See [Why was I charged](/for-customers/why-charged).