Skip to main content
GET
/
api
/
v3
/
donors
/
{donorId}
Get Donor
curl --request GET \
  --url https://server.stage.overflow.co/api/v3/donors/{donorId} \
  --header 'x-client-id: <api-key>'
{
  "data": {
    "id": "6710f34fd5061afeec3eab57",
    "createdAt": "2025-01-01T00:00:00.000Z",
    "updatedAt": "2025-01-01T00:00:00.000Z",
    "firstName": "John",
    "lastName": "Doe",
    "email": "[email protected]",
    "phone": "+1234567890",
    "address": {
      "line1": "123 Main St",
      "line2": "Apt 1",
      "city": "Anytown",
      "state": "CA",
      "zip": "12345"
    },
    "activeRecurringCount": 1,
    "latestContributionDate": "2025-01-01T00:00:00.000",
    "totalContributionsCount": 10
  }
}

Authorizations

x-client-id
string
header
required

Client ID for API authentication

Path Parameters

donorId
string
required

The ID of the donor to fetch.

Example:

"2ea1ae03ca521e437db76d76"

Response

data
object
required

The donor for the given ID