Interact with FundraiseUp REST API to manage donations, recurring plans, supporters, campaigns, and donor portal access. Process online and offline donations, retrieve fundraising analytics, and integrate with nonprofit CRM systems.
This skill enables Claude to interact with the FundraiseUp REST API for processing donations, managing recurring plans, retrieving supporter data, and accessing fundraising analytics. FundraiseUp is a digital fundraising platform that allows nonprofits to process donations from various channels.
Required environment variables:
FUNDRAISEUP_API_KEY - API Key (e.g., ABEDDDD_XSSSHwzZc98KR53CWQeWeclA)
https://api.fundraiseup.com/v1test_ prefix)All API requests must include the Authorization header with Bearer token:
Authorization: Bearer YOUR_API_KEYContent-Type: application/json
Accept: application/json
Authorization: Bearer YOUR_API_KEYEndpoint: GET /donations
Description: Retrieve all donations with cursor-based pagination.
Query Parameters:
limit (optional): Number of records per page (1-100, default: 10)starting_after (optional): Cursor for pagination (donation ID)ending_before (optional): Cursor for backward pagination (donation ID)starting_after and ending_before are mutually exclusiveExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/donations?limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response Fields:
id: Donation identifiercreated_at: ISO 8601 timestamplivemode: Boolean (true for live, false for test)amount: Donation amount in selected currencyamount_in_default_currency: Amount in organization's default currencycurrency: Three-letter ISO code (lowercase)status: Donation status (e.g., succeeded, pending, failed)campaign: Campaign details (id, code, name)supporter: Supporter informationrecurring_plan: Recurring plan details (if applicable)designation: Fund/program designationtribute: Tribute information (if provided)custom_fields: Array of custom field valuesprocessing_fee: Processing fee detailsplatform_fee: Platform fee detailsfees_covered: Amount of fees covered by donorEndpoint: GET /donations/{id}
Description: Retrieve details of a specific donation.
Path Parameters:
id (required): Donation IDExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/donations/DFQLCFEP' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Endpoint: POST /donations
Description: Create a one-time or recurring donation. API-created donations will have "API" as the donation source.
Prerequisites:
Request Body:
{
"campaign_id": "FUNCPJTZZQR",
"amount": "25.00",
"currency": "usd",
"payment_method_id": "pm_1234567890abcdef",
"supporter": {
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"mailing_address": {
"line1": "123 Main St",
"line2": "Apt 4B",
"city": "New York",
"region": "NY",
"postal_code": "10001",
"country": "us"
}
},
"recurring_plan": {
"frequency": "monthly"
},
"designation": [
{
"id": "EHHJ9R36"
}
],
"tribute": {
"type": "in_honor_of",
"honoree": "Jane Smith"
},
"comment": "Monthly donation for general fund",
"anonymous": false,
"custom_fields": [
{
"name": "referral_source",
"value": "Email Campaign"
}
]
}Required Fields:
campaign_id: Must belong to the account and be activeamount: Decimal string (e.g., "9.99" for USD, "200" for JPY), minimum $1 or equivalentcurrency: Three-letter ISO code (lowercase)payment_method_id: Stripe Payment Method IDsupporter.first_name: Up to 256 characterssupporter.last_name: Up to 256 characterssupporter.email: Valid email address (not verified by API)supporter.phone: Up to 20 characters (required if campaign requires it)supporter.mailing_address: Required if campaign requires itOptional Fields:
recurring_plan.frequency: Creates recurring plan ("monthly", "weekly", "quarterly", "yearly", "daily")designation: Array of designation IDstribute.type: "in_honor_of" or "in_memory_of"tribute.honoree: Name of person being honoredcomment: Donation commentanonymous: Boolean (default: false)custom_fields: Array of custom field objectsExample Request:
curl --request POST \
--url 'https://api.fundraiseup.com/v1/donations' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
"campaign_id": "FUNCPJTZZQR",
"amount": "50.00",
"currency": "usd",
"payment_method_id": "pm_1234567890",
"supporter": {
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@example.com"
}
}'Important Notes:
Endpoint: PATCH /donations/{id}
Description: Update a donation. Updates only allowed within 24 hours of creation and only for API-created donations.
Path Parameters:
id (required): Donation IDLimitations:
Endpoint: GET /recurring_plans
Description: Retrieve all recurring donation plans.
Query Parameters:
limit (optional): Number of records per page (1-100)starting_after (optional): Cursor for paginationending_before (optional): Cursor for backward paginationExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/recurring_plans?limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response Fields:
id: Recurring plan identifiercreated_at: ISO 8601 timestampfrequency: "monthly", "weekly", "quarterly", "yearly", or "daily"amount: Recurring donation amountcurrency: Three-letter ISO codestatus: Plan status (active, paused, canceled)next_installment_at: Next scheduled donation dateended_at: End date (if set)campaign: Associated campaign detailssupporter: Supporter informationEndpoint: GET /recurring_plans/{id}
Description: Retrieve details of a specific recurring plan.
Path Parameters:
id (required): Recurring plan IDExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/recurring_plans/RVSHJNPJ' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Endpoint: PATCH /recurring_plans/{id}
Description: Update a recurring plan. Updates only allowed within 24 hours of creation and only for API-created plans.
Endpoint: GET /supporters
Description: Retrieve all supporters/donors.
Query Parameters:
limit (optional): Number of records per page (1-100)starting_after (optional): Cursor for paginationending_before (optional): Cursor for backward paginationExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/supporters?limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response Fields:
id: Supporter identifiercreated_at: ISO 8601 timestampemail: Email addressfirst_name: First namelast_name: Last namephone: Phone numbermailing_address: Address detailsmailing_list_subscribed: Booleananonymous: Booleanemployer: Employer name (if provided)Endpoint: GET /supporters/{id}
Description: Retrieve details of a specific supporter.
Path Parameters:
id (required): Supporter IDExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/supporters/SXXXXXXX' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Endpoint: GET /events
Description: Retrieve audit log events for donations, recurring plans, and supporters.
Query Parameters:
limit (optional): Number of records per page (1-100)starting_after (optional): Cursor for paginationending_before (optional): Cursor for backward paginationExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/events?limit=50' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Use Cases:
donation.success event)Endpoint: GET /campaigns
Description: Retrieve all campaigns.
Query Parameters:
limit (optional): Number of records per page (1-100)starting_after (optional): Cursor for paginationending_before (optional): Cursor for backward paginationExample Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/campaigns' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response Fields:
id: Campaign identifiercode: Campaign codename: Campaign namestatus: Campaign statusEndpoint: GET /campaigns/{id}
Path Parameters:
id (required): Campaign IDEndpoint: GET /designations
Description: Retrieve all fund/program designations.
Example Request:
curl --request GET \
--url 'https://api.fundraiseup.com/v1/designations' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Endpoint: POST /donor_portal/access_links/supporters/{id}
Description: Generate a secure link for a supporter to access their Donor Portal without logging in.
Path Parameters:
id (required): Supporter IDPrerequisites:
Example Request:
curl --request POST \
--url 'https://api.fundraiseup.com/v1/donor_portal/access_links/supporters/64b0ba9d9a19ea001fa3516a' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response:
{
"url": "https://yourorg.org/login/?auth=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}Important Security Notes:
Endpoint: POST /donor_portal/access_links/recurring_plans/{id}
Description: Generate a link for a supporter to access a specific recurring plan in the Donor Portal.
Path Parameters:
id (required): Recurring plan IDOptional Query Parameters:
return_url (optional): URL to return to after managing the recurring planExample Request:
curl --request POST \
--url 'https://api.fundraiseup.com/v1/donor_portal/access_links/recurring_plans/RVSHJNPJ' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{FUNDRAISEUP_API_KEY}}'Response:
{
"url": "https://yourorg.org/login/?auth=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}All list endpoints use cursor-based pagination:
limit parameter (1-100)id in starting_afterid in ending_beforeExample Pagination Flow:
# Page 1
GET /donations?limit=50
# Page 2 (use last donation ID from page 1)
GET /donations?limit=50&starting_after=LAST_DONATION_ID
# Previous page
GET /donations?limit=50&ending_before=FIRST_DONATION_ID200 OK: Successful GET request201 Created: Successful POST request400 Bad Request: Invalid request parameters401 Unauthorized: Missing or invalid API key403 Forbidden: Insufficient permissions404 Not Found: Resource not found429 Too Many Requests: Rate limit exceeded500 Internal Server Error: Server errorimport requests
import os
API_KEY = os.environ.get('FUNDRAISEUP_API_KEY')
BASE_URL = 'https://api.fundraiseup.com/v1'
headers = {
'Authorization': f'Bearer {API_KEY}',
'Accept': 'application/json',
'Content-Type': 'application/json'
}
# List donations
def get_donations(limit=50):
url = f'{BASE_URL}/donations'
params = {'limit': limit}
response = requests.get(url, headers=headers, params=params)
response.raise_for_status()
return response.json()
# Create donation
def create_donation(campaign_id, amount, currency, payment_method_id, supporter):
url = f'{BASE_URL}/donations'
data = {
'campaign_id': campaign_id,
'amount': str(amount),
'currency': currency,
'payment_method_id': payment_method_id,
'supporter': supporter
}
response = requests.post(url, headers=headers, json=data)
response.raise_for_status()
return response.json()
# Get single donation
def get_donation(donation_id):
url = f'{BASE_URL}/donations/{donation_id}'
response = requests.get(url, headers=headers)
response.raise_for_status()
return response.json()const axios = require('axios');
const API_KEY = process.env.FUNDRAISEUP_API_KEY;
const BASE_URL = 'https://api.fundraiseup.com/v1';
const headers = {
'Authorization': `Bearer ${API_KEY}`,
'Accept': 'application/json',
'Content-Type': 'application/json'
};
// List donations
async function getDonations(limit = 50) {
const response = await axios.get(`${BASE_URL}/donations`, {
headers,
params: { limit }
});
return response.data;
}
// Create donation
async function createDonation(campaignId, amount, currency, paymentMethodId, supporter) {
const response = await axios.post(`${BASE_URL}/donations`, {
campaign_id: campaignId,
amount: amount.toString(),
currency,
payment_method_id: paymentMethodId,
supporter
}, { headers });
return response.data;
}
// Get single donation
async function getDonation(donationId) {
const response = await axios.get(`${BASE_URL}/donations/${donationId}`, { headers });
return response.data;
}# Set your API key as environment variable
export FUNDRAISEUP_API_KEY="your_api_key_here"
# List donations
curl --request GET \
--url 'https://api.fundraiseup.com/v1/donations?limit=50' \
--header "Accept: application/json" \
--header "Authorization: Bearer $FUNDRAISEUP_API_KEY"
# Create donation
curl --request POST \
--url 'https://api.fundraiseup.com/v1/donations' \
--header "Accept: application/json" \
--header "Authorization: Bearer $FUNDRAISEUP_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"campaign_id": "FUNCPJTZZQR",
"amount": "25.00",
"currency": "usd",
"payment_method_id": "pm_1234567890",
"supporter": {
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com"
}
}'
# Get single donation
curl --request GET \
--url "https://api.fundraiseup.com/v1/donations/DFQLCFEP" \
--header "Accept: application/json" \
--header "Authorization: Bearer $FUNDRAISEUP_API_KEY"test_ prefixAdd fundraiseupLivemode=no to any URL for testing without processing real donations
limit parameter to fetch batches (recommended: 50-100)starting_after with last record ID for next batchstarting_after to get only new recordsProcessing Offline Donations
CRM Integration
Analytics and Reporting
Donor Portal Integration
API Key Management
HTTPS Only
Data Validation
PCI Compliance
Donor Portal Security
401 Unauthorized
429 Rate Limit Exceeded
400 Bad Request
Fees Showing as 0
donation.success eventCannot Update Donation
45f9fac
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.