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 donors against your network

POST
https://api.donoratlas.com/v1/partners/networks/connections
POST
/v1/partners/networks/connections
$curl -X POST https://api.donoratlas.com/v1/partners/networks/connections \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_ids": [
> "donor_987654",
> "donor_123456"
> ]
>}'
1{
2 "results": [
3 {
4 "donor_id": "donor_987654",
5 "max_strength": 0.92,
6 "total_connections": 3,
7 "connections": [
8 {
9 "source_donor": {
10 "id": "network_001",
11 "name": "Michael Johnson",
12 "bio": "Board member of multiple nonprofits in the Boston area.",
13 "city": "Boston",
14 "state": "MA",
15 "giving_capacity": 750000,
16 "net_worth_min": 5000000,
17 "net_worth_max": 7000000,
18 "primary_photo": "https://images.donoratlas.com/photos/michael_johnson.jpg"
19 },
20 "strength": 0.92,
21 "snippet": "Served together on the board of Boston Children's Hospital for 5 years",
22 "connecting_entity_name": "Boston Children's Hospital",
23 "connecting_entity_type": "nonprofit",
24 "source_relationship": "sits_on_board_of",
25 "target_relationship": "sits_on_board_of",
26 "source_networks": [
27 {
28 "network_id": "network_001",
29 "name": "Boston Philanthropy Circle",
30 "color": "blue"
31 }
32 ]
33 }
34 ],
35 "donor": {
36 "id": "donor_987654",
37 "name": "Jane Smith",
38 "bio": "Philanthropist focused on education and healthcare initiatives.",
39 "city": "Boston",
40 "state": "MA",
41 "giving_capacity": 500000,
42 "net_worth_min": 2000000,
43 "net_worth_max": 3500000,
44 "primary_photo": "https://images.donoratlas.com/photos/jane_smith.jpg"
45 }
46 },
47 {
48 "donor_id": "donor_123456",
49 "max_strength": 0.75,
50 "total_connections": 1,
51 "connections": [
52 {
53 "source_donor": {
54 "id": "network_002",
55 "name": "Emily Davis",
56 "bio": "Environmental activist and donor network leader.",
57 "city": "San Francisco",
58 "state": "CA",
59 "giving_capacity": 600000,
60 "net_worth_min": 4000000,
61 "net_worth_max": 5500000,
62 "primary_photo": "https://images.donoratlas.com/photos/emily_davis.jpg"
63 },
64 "strength": 0.75,
65 "snippet": "Collaborated on fundraising for Sierra Club",
66 "connecting_entity_name": "Sierra Club",
67 "connecting_entity_type": "nonprofit",
68 "source_relationship": "donates_to",
69 "target_relationship": "donates_to",
70 "source_networks": [
71 {
72 "network_id": "network_002",
73 "name": "West Coast Green Donors",
74 "color": "green"
75 }
76 ]
77 }
78 ],
79 "donor": {
80 "id": "donor_123456",
81 "name": "Robert Lee",
82 "bio": "Entrepreneur and active donor in environmental causes.",
83 "city": "San Francisco",
84 "state": "CA",
85 "giving_capacity": 300000,
86 "net_worth_min": 1500000,
87 "net_worth_max": 2500000,
88 "primary_photo": "https://images.donoratlas.com/photos/robert_lee.jpg"
89 }
90 }
91 ]
92}
Submit a list of donor IDs and see how connected each one is to your network members. Returns every donor ranked by connection strength, including those with zero connections. This is the bulk version of 'Check a donor against your network'.
Was this page helpful?
Previous

Check a donor against your network

Next
Built with

Authentication

x-api-keystring

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

Request

This endpoint expects an object.
donor_idslist of stringsRequired
Prospect donor IDs to evaluate
in_network_donor_idslist of strings or nullOptional
Specific network members to compare against. If omitted, all members of the specified networks are used
network_idslist of strings or nullOptional
Scope to these networks. If omitted, all team networks are used
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
resultslist of objects

Errors

422
Unprocessable Entity Error