Plisio integration
Plisio is a cryptocurrency payment gateway that enables businesses to accept…
- Provider
- plisio
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 12 available
Quick start
Call Plisio from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Plisio'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(
"PLISIO_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 Plisio 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
12 actions exposed via the
Plisio integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PLISIO_CREATE_INVOICE -
PLISIO_ESTIMATE_FEE -
PLISIO_GET_BALANCE_BY_CURRENCY -
PLISIO_GET_COMMISSION -
PLISIO_GET_CURRENCY_RATE -
PLISIO_GET_FEE_PLANS -
PLISIO_GET_FEE_PLANS2 -
PLISIO_GET_INVOICE -
PLISIO_GET_INVOICE_EMAIL -
PLISIO_GET_SHOP -
PLISIO_GET_TRANSACTIONS -
PLISIO_LIST_CURRENCIES
Build with Plisio
Open OverSkill, describe what you want to build, and reference Plisio in your prompt — the AI will wire up the integration automatically.