Developer docs

Lemon Squeezy integration

Lemon Squeezy is a platform designed to simplify payments, taxes, and…

Updated June 2026 32 actions available

Provider
lemon_squeezy
Category
Ecommerce
Setup
User-supplied API key
Actions
32 available

Quick start

Call Lemon Squeezy from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Lemon Squeezy's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "LEMON_SQUEEZY_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Lemon Squeezy API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

32 actions exposed via the Lemon Squeezy integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 32 actions
  • LEMON_SQUEEZY_LIST_ALL_LICENSE_KEYS
  • LEMON_SQUEEZY_LIST_ALL_ORDER_ITEMS
  • LEMON_SQUEEZY_LIST_ALL_ORDERS
  • LEMON_SQUEEZY_LIST_ALL_PRICES
  • LEMON_SQUEEZY_LIST_ALL_PRODUCTS
  • LEMON_SQUEEZY_LIST_ALL_STORES
  • LEMON_SQUEEZY_LIST_ALL_SUBSCRIPTION_INVOICES
  • LEMON_SQUEEZY_LIST_ALL_SUBSCRIPTION_ITEMS
  • LEMON_SQUEEZY_LIST_ALL_SUBSCRIPTIONS
  • LEMON_SQUEEZY_LIST_ALL_USAGE_RECORDS
  • LEMON_SQUEEZY_LIST_ALL_VARIANTS
  • LEMON_SQUEEZY_LIST_ALL_WEBHOOKS
  • LEMON_SQUEEZY_RETRIEVE_AUTHENTICATED_USER
  • LEMON_SQUEEZY_RETRIEVE_CUSTOMER
  • LEMON_SQUEEZY_RETRIEVE_DISCOUNT
  • LEMON_SQUEEZY_RETRIEVE_STORE
  • LEMON_SQUEEZY_RETRIEVE_WEBHOOK
  • LEMON_SQUEEZY_UPDATE_CUSTOMER
  • LEMON_SQUEEZY_UPDATE_WEBHOOK
  • LEMON_SQUEEZY_VALIDATE_LICENSE

Build with Lemon Squeezy

Open OverSkill, describe what you want to build, and reference Lemon Squeezy in your prompt — the AI will wire up the integration automatically.