BTCPay Server integration
BTCPay Server is a free, open-source, self-hosted Bitcoin payment processor…
- Provider
- btcpay_server
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 16 available
Quick start
Call BTCPay Server from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to BTCPay Server'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(
"BTCPAY_SERVER_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 BTCPay Server 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
16 actions exposed via the
BTCPay Server integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BTCPAY_SERVER_CREATE_PAYMENT_REQUEST -
BTCPAY_SERVER_CREATE_STORE -
BTCPAY_SERVER_CREATE_USER -
BTCPAY_SERVER_CREATE_WEBHOOK -
BTCPAY_SERVER_DELETE_API_KEY -
BTCPAY_SERVER_DELETE_PAYMENT_REQUEST -
BTCPAY_SERVER_DELETE_PAYOUT -
BTCPAY_SERVER_GET_API_KEYS -
BTCPAY_SERVER_GET_PAYMENT_REQUESTS -
BTCPAY_SERVER_GET_SERVER_INFO -
BTCPAY_SERVER_GET_STORE -
BTCPAY_SERVER_GET_USER
Show all 16 actions
-
BTCPAY_SERVER_GET_WEBHOOK -
BTCPAY_SERVER_GET_WEBHOOKS -
BTCPAY_SERVER_LIST_APPS -
BTCPAY_SERVER_UPDATE_USER
Build with BTCPay Server
Open OverSkill, describe what you want to build, and reference BTCPay Server in your prompt — the AI will wire up the integration automatically.