Developer docs

Givebutter integration

Givebutter is a fundraising platform that offers a free, open, and public API…

Updated June 2026 58 actions available

Provider
givebutter
Category
Other
Setup
User-supplied API key
Actions
58 available

Quick start

Call Givebutter from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Givebutter'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(
  "GIVEBUTTER_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 Givebutter 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

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

Show all 58 actions
  • GIVEBUTTER_DELETE_CAMPAIGN
  • GIVEBUTTER_DELETE_CONTACT_ACTIVITY
  • GIVEBUTTER_DELETE_DISCOUNT_CODE
  • GIVEBUTTER_DELETE_FUND
  • GIVEBUTTER_DELETE_HOUSEHOLD
  • GIVEBUTTER_DELETE_WEBHOOK
  • GIVEBUTTER_GET_CAMPAIGN
  • GIVEBUTTER_GET_CAMPAIGN_TICKET
  • GIVEBUTTER_GET_CONTACT
  • GIVEBUTTER_GET_CONTACT_ACTIVITY
  • GIVEBUTTER_GET_DISCOUNT_CODE
  • GIVEBUTTER_GET_FUND
  • GIVEBUTTER_GET_HOUSEHOLD
  • GIVEBUTTER_GET_MEMBERS
  • GIVEBUTTER_GET_PAYOUTS
  • GIVEBUTTER_GET_PLANS
  • GIVEBUTTER_GET_TEAMS
  • GIVEBUTTER_GET_TICKETS
  • GIVEBUTTER_GET_TRANSACTIONS
  • GIVEBUTTER_GET_WEBHOOK
  • GIVEBUTTER_GET_WEBHOOK_ACTIVITY
  • GIVEBUTTER_GET_WEBHOOKS
  • GIVEBUTTER_LIST_CAMPAIGNS
  • GIVEBUTTER_LIST_CAMPAIGN_TICKETS
  • GIVEBUTTER_LIST_CONTACT_ACTIVITIES
  • GIVEBUTTER_LIST_CONTACTS
  • GIVEBUTTER_LIST_DISCOUNT_CODES
  • GIVEBUTTER_LIST_FUNDS
  • GIVEBUTTER_LIST_HOUSEHOLD_CONTACTS
  • GIVEBUTTER_LIST_HOUSEHOLDS
  • GIVEBUTTER_LIST_MESSAGES
  • GIVEBUTTER_LIST_PLEDGES
  • GIVEBUTTER_LIST_WEBHOOK_ACTIVITIES
  • GIVEBUTTER_REMOVE_CONTACT_TAGS
  • GIVEBUTTER_RESTORE_CONTACT
  • GIVEBUTTER_SYNC_CONTACT_TAGS
  • GIVEBUTTER_UPDATE_CAMPAIGN
  • GIVEBUTTER_UPDATE_CAMPAIGN_PUT
  • GIVEBUTTER_UPDATE_CONTACT
  • GIVEBUTTER_UPDATE_CONTACT_ACTIVITY
  • GIVEBUTTER_UPDATE_CONTACT_PUT
  • GIVEBUTTER_UPDATE_DISCOUNT_CODE
  • GIVEBUTTER_UPDATE_FUND
  • GIVEBUTTER_UPDATE_HOUSEHOLD
  • GIVEBUTTER_UPDATE_WEBHOOK
  • GIVEBUTTER_UPDATE_WEBHOOK_PUT

Build with Givebutter

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