Developer Documentation
API Overview
Get started with the FundraiserMax API. Learn about base URLs, response formats, and authentication to integrate fundraising data into your applications.
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
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.