GoFundMe Reports API

Reports

Operations 2

GET /organizations/{organization_id}/gfm-npo-page/download-fundraisers-report Download Fundraisers Report #
GET /organizations/{organization_id}/gfm-npo-page/download-donations-report Download Donations Report #

Documentation

Specifications

Other Resources

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/gofundme-reports-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

gofundme-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GoFundMe Pro Reports API
  description: 'GoFundMe Pro API


    Welcome to the GoFundMe Pro API (2.0.0), a powerful toolset that empowers innovative and creative minds to engineer the world for good.'
  version: 2.0.0
servers:
- url: https://pro.gofundme.com/api/2.0
security:
- OAuth2Application: []
- OAuth2Member: []
tags:
- name: Reports
  description: Reports
paths:
  /organizations/{organization_id}/gfm-npo-page/download-fundraisers-report:
    get:
      tags:
      - Reports
      summary: Download Fundraisers Report
      description: Downloads the most recent fundraisers report CSV file for an organization
      operationId: downloadFundraisersReport
      parameters:
      - name: organization_id
        in: path
        description: Primary identifier of Organization
        required: true
        schema:
          type: integer
      - name: environment
        in: query
        description: Environment to download from
        required: false
        schema:
          type: string
          default: prod
          enum:
          - prod
          - test
      responses:
        '200':
          description: Success - Returns download URL
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: true
                  download_url:
                    type: string
                    example: https://s3.amazonaws.com/bucket/path?signed-params
                  filename:
                    type: string
                    example: humane-society-of-manatee-county-fund-1727778600.csv
                  expires_at:
                    type: string
                    format: date-time
                    example: '2024-09-22T10:30:00Z'
                  file_size:
                    type: integer
                    example: 12345
                  organization_id:
                    type: integer
                    example: 1169661
                  type:
                    type: string
                    example: fundraisers
                type: object
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Unauthorized access to organization reports
                type: object
        '404':
          description: Report not found
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: No fundraisers report available for organization 1169661
                  organization_id:
                    type: integer
                    example: 1169661
                  type:
                    type: string
                    example: fundraisers
                type: object
        '500':
          description: Server error
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: An error occurred while processing the fundraisers report download request
                type: object
  /organizations/{organization_id}/gfm-npo-page/download-donations-report:
    get:
      tags:
      - Reports
      summary: Download Donations Report
      description: Downloads the most recent donations report CSV file for an organization
      operationId: downloadDonationsReport
      parameters:
      - name: organization_id
        in: path
        description: Primary identifier of Organization
        required: true
        schema:
          type: integer
      - name: environment
        in: query
        description: Environment to download from
        required: false
        schema:
          type: string
          default: prod
          enum:
          - prod
          - test
      responses:
        '200':
          description: Success - Returns download URL
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: true
                  download_url:
                    type: string
                    example: https://s3.amazonaws.com/bucket/path?signed-params
                  filename:
                    type: string
                    example: humane-society-of-manatee-county-donation-1727778600.csv
                  expires_at:
                    type: string
                    format: date-time
                    example: '2024-09-22T10:30:00Z'
                  file_size:
                    type: integer
                    example: 12345
                  organization_id:
                    type: integer
                    example: 1169661
                  type:
                    type: string
                    example: donations
                type: object
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Unauthorized access to organization reports
                type: object
        '404':
          description: Report not found
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: No donations report available for organization 1169661
                  organization_id:
                    type: integer
                    example: 1169661
                  type:
                    type: string
                    example: donations
                type: object
        '500':
          description: Server error
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: An error occurred while processing the donations report download request
                type: object
components:
  securitySchemes:
    OAuth2Application:
      type: oauth2
      description: OAuth bearer token for client application
      flows:
        clientCredentials:
          tokenUrl: /oauth2/auth
          refreshUrl: /oauth2/auth
          scopes:
            read: Read access
            write: Write access
    OAuth2Member:
      type: oauth2
      description: OAuth bearer token for client application with additional member context
      flows:
        password:
          tokenUrl: /oauth2/auth
          refreshUrl: /oauth2/auth
          scopes:
            read: Read access
            write: Write access