Givebutter Sso Campaigns API

The Sso Campaigns API from Givebutter — 1 operation(s) for sso campaigns. Split by tag from Givebutter's own published OpenAPI at https://givebutter.com/docs/api.json (harvested 2026-09-12).

Operations 1

GET /sso/v1/campaigns/{campaign} Sso campaigns show #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/givebutter-sso-campaigns-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

givebutter-sso-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Givebutter API Documentation Sso Campaigns API
  version: 1.0.0
  description: Givebutter Public API - Access and manage your campaigns, contacts, transactions, and more.
servers:
- url: https://api.givebutter.com/
security:
- http: []
tags:
- name: Sso Campaigns
paths:
  /sso/v1/campaigns/{campaign}:
    get:
      operationId: sso.campaigns.show
      tags:
      - Sso Campaigns
      parameters:
      - name: campaign
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: '`CampaignResource`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CampaignResource'
        '401':
          $ref: '#/components/responses/AuthenticationException'
      summary: Sso campaigns show
      x-summary-source: derived
components:
  schemas:
    EventResource:
      type: object
      properties:
        title:
          type: string
        type:
          type: string
        location_name:
          type: string
        address_formatted:
          type: string
        google_place_id:
          type: string
        start_at:
          type: string
        end_at:
          type: string
        timezone:
          type: string
        details:
          type: string
        private:
          type: string
        tickets_required:
          type: string
        livestream:
          type: string
        livestream_start_at:
          type: string
        livestream_end_at:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
      required:
      - title
      - type
      - location_name
      - address_formatted
      - google_place_id
      - start_at
      - end_at
      - timezone
      - details
      - private
      - tickets_required
      - livestream
      - livestream_start_at
      - livestream_end_at
      - created_at
      - updated_at
      title: EventResource
    CampaignResource:
      type: object
      properties:
        id:
          type: string
        code:
          type: string
        account_id:
          type: string
        event_id:
          type: string
        type:
          type: string
        title:
          type: string
        subtitle:
          type: string
        description:
          type: string
        slug:
          type: string
        url:
          type: string
        goal:
          type:
          - integer
          - 'null'
        raised:
          type: number
        donors:
          type: integer
        currency:
          type: string
        cover:
          type: string
        status:
          type: string
        timezone:
          type: string
        end_at:
          type: string
        event:
          $ref: '#/components/schemas/EventResource'
        settings:
          type: array
          items:
            $ref: '#/components/schemas/CampaignSettingResource'
        created_at:
          type: string
        updated_at:
          type: string
      required:
      - id
      - code
      - account_id
      - event_id
      - type
      - title
      - subtitle
      - description
      - slug
      - url
      - goal
      - raised
      - donors
      - currency
      - cover
      - status
      - timezone
      - end_at
      - settings
      - created_at
      - updated_at
      title: CampaignResource
    CampaignSettingResource:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
      required:
      - name
      - value
      title: CampaignSettingResource
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
            - message
  securitySchemes:
    http:
      type: http
      scheme: bearer