> ## Documentation Index
> Fetch the complete documentation index at: https://docs.waffo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Accept payments globally — we handle taxes, compliance, and payouts so you don't have to.

## Turn Your Software into a Business

You built something people want. Now you need to get paid — globally, compliantly, without the headache.

**Waffo Pancake handles everything between your product and your bank account:** payments, taxes, compliance, and payouts worldwide.

<CardGroup cols={2}>
  <Card title="Global Card Payments" icon="credit-card">
    Accept Visa, Mastercard, Apple Pay & Google Pay for faster checkout.
  </Card>

  <Card title="No LLC? No Problem." icon="user">
    Get paid directly to your bank account. We're your Merchant of Record.
  </Card>
</CardGroup>

***

## What's Blocking Your Revenue?

You want to ship, not fight compliance. Here's what we solve for you:

<AccordionGroup>
  <Accordion title="I don't have a company. Can I still get paid?" icon="building">
    Traditional MoR services require you to register a legal entity first — that takes weeks and thousands of dollars.

    **Waffo Pancake's Solution:** We act as your Merchant of Record. You get paid directly to your bank account without needing an LLC.
  </Accordion>

  <Accordion title="Building a billing system is too complex" icon="clock">
    Subscription management, tax calculation, dunning emails, failed payment retries... that's months of engineering work.

    **Waffo Pancake's Solution:** Complete infrastructure out of the box — subscriptions, one-time payments, all handled.
  </Accordion>

  <Accordion title="Global tax compliance gives me a headache" icon="landmark">
    The US has 10,000+ tax jurisdictions, the EU has 27 countries each with VAT rules, plus constantly changing regulations...

    **Waffo Pancake's Solution:** We're the legal seller. Tax calculation, collection, and reporting are handled automatically.
  </Accordion>

  <Accordion title="Poor checkout experience is losing customers" icon="cart-arrow-down">
    Complex checkout forms, no Apple Pay/Google Pay, no multi-language support — every step loses customers.

    **Waffo Pancake's Solution:** Optimized two-step checkout flow, Apple Pay & Google Pay support, built-in 19 languages.
  </Accordion>
</AccordionGroup>

***

## How Waffo Pancake Helps You

<CardGroup cols={3}>
  <Card title="We're the Legal Seller" icon="shield-check">
    Taxes, compliance, risk — all handled by us. You focus on your product.
  </Card>

  <Card title="All Major Card Networks" icon="credit-card">
    Visa, Mastercard, Apple Pay, and Google Pay.
  </Card>

  <Card title="Flexible Billing Models" icon="repeat">
    One-time or subscription — your business model, your choice. Weekly, monthly, quarterly, or annual billing.
  </Card>

  <Card title="Optimized Checkout" icon="palette">
    Two-step checkout flow, 19 languages supported, mobile-first design.
  </Card>

  <Card title="Real-time Insights" icon="chart-line">
    Revenue, customers, subscription metrics — no SQL needed, everything at a glance.
  </Card>

  <Card title="Complete Order Management" icon="clipboard-list">
    Refunds, customer portal, subscription management — all in one dashboard.
  </Card>
</CardGroup>

***

## Who Is This For?

<CardGroup cols={3}>
  <Card title="Solo Founders" icon="user">
    No company? No problem. Get paid directly to your bank account. We handle all compliance.
  </Card>

  <Card title="SaaS Startups" icon="rocket">
    Subscriptions, trials, seat-based billing, usage metering — complete solution designed for SaaS.
  </Card>

  <Card title="Vibe Coders" icon="wand-magic-sparkles">
    AI-friendly integration via SDK, MCP Skill, and CLI — ship payments with natural language prompts.
  </Card>
</CardGroup>

***

## Start Getting Paid in 5 Minutes

<Steps>
  <Step title="Create an Account">
    Sign up at [Merchant Dashboard](https://pancake.waffo.ai/merchant/auth/signin). No credit card required.
  </Step>

  <Step title="Add a Product">
    Create a product and set pricing. Done in 2 minutes.
  </Step>

  <Step title="Share Your Link">
    Get your checkout link and add it to your website.
  </Step>

  <Step title="Get Paid">
    Funds go directly to your bank account.
  </Step>
</Steps>

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Set up your first payment in 5 minutes.
  </Card>

  <Card title="Feature Overview" icon="list" href="/feature-list">
    Browse everything Waffo Pancake offers.
  </Card>

  <Card title="Test Mode" icon="flask" href="/features/test-mode">
    Safely test the complete flow before going live.
  </Card>
</CardGroup>

***

## Built for Developers

Install the official TypeScript SDK and start accepting payments in a few lines:

```bash theme={"system"}
npm install @waffo/pancake-ts
```

```typescript theme={"system"}
import { WaffoPancake } from "@waffo/pancake-ts";

const client = new WaffoPancake({
  merchantId: process.env.WAFFO_MERCHANT_ID!,
  privateKey: process.env.WAFFO_PRIVATE_KEY!,
});

// Create a checkout session — redirect consumer to checkoutUrl
const session = await client.checkout.createSession({
  storeId: "store_xxx",
  productId: "prod_xxx",
  productType: "onetime",
  currency: "USD",
});
// => session.checkoutUrl
```

Or call the REST API directly:

```bash theme={"system"}
curl -X POST https://api.waffo.ai/v1/actions/checkout/create-session \
  -H "Content-Type: application/json" \
  -H "X-Store-Slug: your-store-slug" \
  -H "X-Environment: test" \
  -d '{
    "productId": "your-product-uuid",
    "productType": "onetime",
    "currency": "USD"
  }'
```

<CardGroup cols={3}>
  <Card title="TypeScript SDK" icon="npm" href="/integrate/sdks">
    Official SDK with built-in signing and webhook verification.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    REST + GraphQL API with full endpoint documentation.
  </Card>

  <Card title="Webhooks" icon="webhook" href="/api-reference/webhooks">
    Real-time event notifications. Seamless backend integration.
  </Card>
</CardGroup>

***

## Start Your Global Revenue Journey

Don't let complex compliance slow down your product momentum.

<Card title="Sign Up Now" icon="rocket" href="https://pancake.waffo.ai/merchant/auth/signin">
  Start accepting payments in minutes. Built for developers.
</Card>
