latestOpenAPI 3.0.02026-08-1535120202.6 KB
f59881dadecd
Fundraisers
Get Fundraisers
This request allows you to retrieve Fundraiser records from your Fundraise Up account. Webhooks are not supported.
get/v1/fundraisers
Query parameters
livemodeboolean
Example:true
Specifies whether the request is executed in live or test mode. Required for API keys created after 30th January 2026. Fundraisers only exist in live mode — set this to true.
{
"created[gt]": "2025-01-01T12:30:00+02:00",
"created[gte]": "2025-01-01T12:30:00+02:00",
"created[lt]": "2025-01-01T12:30:00+02:00",
"created[lte]": "2025-01-01T12:30:00+02:00"
}starting_afterstring
A cursor for pagination. Returns records older than the specified object ID.
ending_beforestring
A cursor for pagination. Returns records newer than the specified object ID.
limitinteger
This parameter specifies the number of records to display per page, ranging from 1 to 100
Response
On success, the API returns an array of Fundraiser objects. If parameters are invalid, the request returns an error.
Example response
{
"data": [
{
"campaign": {
"code": "Code-1",
"id": "FUNXXXXXXXX",
"name": "My Campaign"
},
"created_at": "2024-12-20T00:00:00.000Z",
"currency": "usd",
"designation": {
"code": "Code-1",
"id": "EXXXXXXX",
"name": "My Designation"
},
"name": "Run for hope"
}
],
"has_more": true
}