Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Project
/
list
List All Projects
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Project/list \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": 123,
      "code": "<string>",
      "isActive": true,
      "isAvailableOnline": true,
      "isPublic": true,
      "isDeleted": true,
      "name": "<string>",
      "description": "<string>",
      "sortOrder": 123,
      "emailAddresses": "<string>",
      "metadataFields": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "image": "<string>",
      "isPinned": true,
      "donorAmount": 123,
      "giftAmount": 123,
      "createdDateTime": "<string>",
      "modifiedDateTime": "<string>",
      "raisedAmount": "<string>",
      "averageGiftAmount": "<string>",
      "firstGiftDate": "<string>",
      "lastGiftDate": "<string>",
      "isSystem": true,
      "percentageRecurringGift": 123,
      "externalIdentifier": "<string>",
      "impactData": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Query Parameters

IsActive
boolean

Indicates if the project is active.

IsAvailableOnline
boolean

Indicates if the project is available online.

Filter
string
Skip
integer<int32>
Take
integer<int32>
SortBy
enum<string>

Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status

Available options:
code,
donoramount,
giftamount,
id,
isactive,
name,
raisedamount,
status
Descending
boolean
IncludeDetails
boolean

Response

OK

items
object[]
total
integer<int32>
Last modified on June 5, 2026