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
      • POSTCreate a network
      • GETList all networks
      • POSTAdd a member
      • POSTAdd members in bulk
      • GETCheck bulk add progress
      • GETList donors in network
      • POSTFind connected prospects
      • POSTCheck donors against your network
      • GETCheck a donor against your network
      • POSTLook up any donor's connections
      • POSTRemove members
      • PUTRename a network
      • DELDelete a network
LogoLogo
DonorAtlasDashboard
API ReferenceNetworks

Check a donor against your network

GET
https://api.donoratlas.com/v1/partners/networks/donors/:donor_id/connections
GET
/v1/partners/networks/donors/:donor_id/connections
$curl https://api.donoratlas.com/v1/partners/networks/donors/donor_id/connections \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "donor": {
3 "id": "d123e456-7890-4abc-def0-123456789abc",
4 "name": "Emily Johnson",
5 "bio": "Philanthropist focused on education and healthcare initiatives.",
6 "city": "San Francisco",
7 "state": "CA",
8 "giving_capacity": 250000,
9 "net_worth_min": 5000000,
10 "net_worth_max": 7500000,
11 "primary_photo": "https://images.donoratlas.com/photos/emily_johnson.jpg"
12 },
13 "in_network": true,
14 "total_connections": 3,
15 "max_strength": 0.92,
16 "connections": [
17 {
18 "source_donor": {
19 "id": "a987b654-3210-4def-abc1-9876543210fe",
20 "name": "Michael Thompson",
21 "bio": "Board member at multiple nonprofits in the Bay Area.",
22 "city": "Oakland",
23 "state": "CA",
24 "giving_capacity": 150000,
25 "net_worth_min": 3000000,
26 "net_worth_max": 4500000,
27 "primary_photo": "https://images.donoratlas.com/photos/michael_thompson.jpg"
28 },
29 "strength": 0.89,
30 "snippet": "Same nonprofit board, 5 years overlap",
31 "connecting_entity_name": "Bay Area Education Fund",
32 "connecting_entity_type": "nonprofit",
33 "source_relationship": "sits_on_board_of",
34 "target_relationship": "donates_to",
35 "source_networks": [
36 {
37 "network_id": "net-00123",
38 "name": "Bay Area Philanthropists",
39 "color": "teal"
40 }
41 ]
42 },
43 {
44 "source_donor": {
45 "id": "b234c567-8901-4abc-def2-234567890abc",
46 "name": "Sarah Lee",
47 "bio": "Corporate executive and active community volunteer.",
48 "city": "San Jose",
49 "state": "CA",
50 "giving_capacity": 180000,
51 "net_worth_min": 4000000,
52 "net_worth_max": 6000000,
53 "primary_photo": "https://images.donoratlas.com/photos/sarah_lee.jpg"
54 },
55 "strength": 0.92,
56 "snippet": "Worked together at nonprofit fundraiser",
57 "connecting_entity_name": "Silicon Valley Health Initiative",
58 "connecting_entity_type": "nonprofit",
59 "source_relationship": "volunteers_for",
60 "target_relationship": "supports",
61 "source_networks": [
62 {
63 "network_id": "net-00456",
64 "name": "Silicon Valley Leaders",
65 "color": "blue"
66 }
67 ]
68 },
69 {
70 "source_donor": {
71 "id": "c345d678-9012-4def-abc3-345678901bcd",
72 "name": "David Kim",
73 "bio": "Alumnus and donor to local universities.",
74 "city": "Palo Alto",
75 "state": "CA",
76 "giving_capacity": 120000,
77 "net_worth_min": 2500000,
78 "net_worth_max": 3500000,
79 "primary_photo": "https://images.donoratlas.com/photos/david_kim.jpg"
80 },
81 "strength": 0.75,
82 "snippet": "Alumni association member, 3 years overlap",
83 "connecting_entity_name": "Stanford University",
84 "connecting_entity_type": "school",
85 "source_relationship": "alumnus_of",
86 "target_relationship": "donates_to",
87 "source_networks": [
88 {
89 "network_id": "net-00789",
90 "name": "University Alumni Network",
91 "color": "indigo"
92 }
93 ]
94 }
95 ],
96 "member_of_networks": [
97 {
98 "network_id": "net-00123",
99 "name": "Bay Area Philanthropists",
100 "color": "teal",
101 "created_at": "2022-05-10T09:30:00Z"
102 },
103 {
104 "network_id": "net-00987",
105 "name": "Healthcare Donors Network",
106 "color": "green",
107 "created_at": "2023-01-15T14:45:00Z"
108 }
109 ]
110}
See how a single donor is connected to your network members. Returns whether they're a member, which networks they belong to, and all connections to people in your network.
Was this page helpful?
Previous

Look up any donor's connections

Next
Built with

Authentication

x-api-keystring

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

Path parameters

donor_idstringRequired

Query parameters

network_idslist of strings or nullOptional
Scope to specific networks
min_strengthdoubleOptional0.45-1Defaults to 0.45
Minimum connection strength, which must be at least 0.45. Connections below that threshold are not stored because they represent relationships that we've determined are too weak to be useful.

Response

Successful Response
donorobject or null
Donor profile. Null if the donor ID was not found
in_networkbooleanDefaults to false
total_connectionsintegerDefaults to 0
max_strengthdoubleDefaults to 0
connectionslist of objects
member_of_networkslist of objects

Errors

422
Unprocessable Entity Error