Developer Documentation

Everything you need to integrate with the FundraiserMax API. Build custom workflows, sync donor data, and connect AI assistants to your fundraising platform.

Overview

The FundraiserMax API provides programmatic access to your fundraising data. Build custom integrations, sync contacts with your CRM, automate donation tracking, and pull real-time dashboard statistics into your own tools and workflows.

The API follows RESTful conventions, returns JSON responses, and uses standard HTTP status codes. All endpoints require authentication via API key and bearer token.

Base URL

Base URLhttps://api.fundraisermax.com/api/v1

Response Format

All responses are returned as JSON. Successful responses include the requested data directly in the response body. List endpoints return an object with data (array of records), total, limit, and offset fields for pagination.

{
  "data": [
    { "id": "cnt_abc123", "firstName": "Jane", "lastName": "Doe" }
  ],
  "total": 142,
  "limit": 10,
  "offset": 0
}

OpenAPI Specification

A complete OpenAPI 3.0 specification is available for interactive exploration and client SDK generation. See the OpenAPI Spec section for details.