Givebutter Sso Accounts API

The Sso Accounts API from Givebutter — 1 operation(s) for sso accounts. 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/account Sso account #

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-accounts-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-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Givebutter API Documentation Sso Accounts 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 Accounts
paths:
  /sso/v1/account:
    get:
      operationId: sso.account
      tags:
      - Sso Accounts
      responses:
        '200':
          description: '`SsoAccountResource`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SsoAccountResource'
        '401':
          $ref: '#/components/responses/AuthenticationException'
      summary: Sso account
      x-summary-source: derived
components:
  schemas:
    SsoAccountResource:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        logo:
          type: string
        cover:
          type: string
        tagline:
          type: string
        description:
          type: string
        slug:
          type: string
        url:
          type: string
        phone:
          type: string
        email:
          type: string
        website:
          type: string
        facebook:
          type: string
        linkedin:
          type: string
        twitter:
          type: string
        snapchat:
          type: string
        instagram:
          type: string
        tiktok:
          type: string
        youtube:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
        last_campaign_id:
          type: string
      required:
      - id
      - name
      - logo
      - cover
      - tagline
      - description
      - slug
      - url
      - phone
      - email
      - website
      - facebook
      - linkedin
      - twitter
      - snapchat
      - instagram
      - tiktok
      - youtube
      - created_at
      - updated_at
      - last_campaign_id
      title: SsoAccountResource
  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