For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DonorAtlasDashboard
  • Getting Started
    • Welcome
    • Authentication
    • Quickstart
  • Guides
    • Donor Profile Schema
    • Network
    • Credits & Billing
    • Error Handling
  • API Reference
      • GETGet a single donor
      • POSTGet multiple donors
      • GETGet donor metadata
      • POSTGet metadata in bulk
LogoLogo
DonorAtlasDashboard
API ReferenceDonors

Get a single donor

GET
https://api.donoratlas.com/v1/partners/donors/:donor_id
GET
/v1/partners/donors/:donor_id
$curl https://api.donoratlas.com/v1/partners/donors/donor_id \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "donor": {
3 "date_last_updated": "2025-12-01",
4 "donoratlas_url": "https://app.donoratlas.com/donor/abc123",
5 "id": "abc123",
6 "name": {
7 "first": "James",
8 "last": "Harrison",
9 "title": "Dr.",
10 "middle": "Edward",
11 "suffix": "Jr."
12 },
13 "sex": "Male",
14 "mailing_address": {
15 "street_address": "1234 Elm Street",
16 "street_address_line_2": "Apt 56B",
17 "city": "Springfield",
18 "state": "IL",
19 "zip": "62704"
20 },
21 "age": 52,
22 "is_deceased": false,
23 "religion": "Christian",
24 "primary_photo_url": "https://images.donoratlas.com/photos/abc123.jpg",
25 "source_urls": [
26 "https://www.philanthropynews.com/profiles/james-harrison"
27 ],
28 "bio": [
29 "Philanthropist focused on education and healthcare.",
30 "Founder of the Harrison Family Foundation.",
31 "Active in community development projects in Illinois."
32 ],
33 "top_issues": [
34 {
35 "issue_tag": "Education",
36 "description": "Supports scholarships and student financial aid programs."
37 },
38 {
39 "issue_tag": "Healthcare",
40 "description": "Advocates for improved access to medical services."
41 }
42 ],
43 "net_worth_min": 2000000,
44 "net_worth_max": 7000000,
45 "political_stats": {
46 "capacity": 85000,
47 "avg_amt": 250,
48 "total_donation_count": 87,
49 "total_amt": 100000,
50 "per_year": {
51 "2012": 5000,
52 "2014": 10000,
53 "2016": 15000,
54 "2018": 20000,
55 "2020": 25000,
56 "2022": 20000,
57 "2024": 10000
58 },
59 "amt_to_democrats": 30000,
60 "amt_to_republicans": 40000,
61 "amt_to_libertarians": 5000,
62 "amt_to_green_party": 5000,
63 "amt_to_independents": 10000,
64 "amt_to_no_party": 0,
65 "amt_to_presidential": 35000,
66 "amt_to_congressional": 30000,
67 "amt_to_state_local": 35000
68 },
69 "nonprofit_stats": {
70 "total_donation_count": 45,
71 "capacity": {
72 "predicted_annual_giving": 125000,
73 "explanations": [
74 {
75 "title": "Real Estate Holdings",
76 "reason": "Owns $2.5M property in Manhattan"
77 },
78 {
79 "title": "Investment Portfolio",
80 "reason": "Significant holdings in technology stocks"
81 }
82 ]
83 },
84 "avg_amt": 5000,
85 "total_amt_range": [
86 50000,
87 100000
88 ]
89 },
90 "education": [
91 {
92 "institution_name": "Harvard University",
93 "institution_url": "https://www.harvard.edu",
94 "degree": "Bachelor of Arts",
95 "graduation_year": 1995,
96 "start_date": "1991-09-01",
97 "end_date": "1995-06-15",
98 "source_urls": [
99 "https://www.harvard.edu/alumni/james-harrison"
100 ]
101 }
102 ],
103 "work": [
104 {
105 "company_name": "Apple Inc.",
106 "company_url": "https://www.apple.com",
107 "job_title": "Chief Executive Officer",
108 "start_date": "2010-05-01",
109 "end_date": null,
110 "source_urls": [
111 "https://www.apple.com/leadership/james-harrison"
112 ]
113 }
114 ],
115 "board_affiliations": [
116 {
117 "name": "United Way",
118 "title": "Treasurer",
119 "source_urls": [
120 "https://www.unitedway.org/board/james-harrison"
121 ],
122 "probability": 0.95,
123 "nonprofit_url": "https://www.unitedway.org",
124 "year_range": [
125 2018,
126 2023
127 ]
128 }
129 ],
130 "donations": [
131 {
132 "name": "American Red Cross",
133 "source_urls": [
134 "https://www.redcross.org/donors/james-harrison"
135 ],
136 "probability": 0.95,
137 "nonprofit_url": "https://www.redcross.org",
138 "amount_range": [
139 250,
140 499
141 ],
142 "year_range": [
143 2021,
144 2023
145 ]
146 }
147 ],
148 "private_foundations": [
149 {
150 "name": "Smith Family Foundation",
151 "relationship": "Trustee",
152 "nonprofit_url": "https://www.smithfamilyfoundation.org",
153 "revenue": 250000,
154 "assets": 5000000,
155 "source_urls": [
156 "https://www.smithfamilyfoundation.org/about/board"
157 ]
158 }
159 ]
160 }
161}

Retrieve the full profile for a single donor by their DonorAtlas ID. Returns biographical info, giving history, education, employment, board affiliations, and more. Contact information is not included. See the Donor Profile Schema guide for details on confidence scores, data sources, and financial fields.

Was this page helpful?
Previous

Get multiple donors

Next
Built with

Authentication

x-api-keystring

Your DonorAtlas API key. Contact support@donoratlas.com to get started.

Path parameters

donor_idstringRequired1-100 characters
DonorAtlas donor ID to retrieve

Response

Successful Response
donorobject
Full donor profile

Errors

404
Not Found Error
422
Unprocessable Entity Error