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

Look up any donor's connections

POST
https://api.donoratlas.com/v1/partners/networks/lookup
POST
/v1/partners/networks/lookup
$curl -X POST https://api.donoratlas.com/v1/partners/networks/lookup \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_id": "dnt78945"
>}'
1{
2 "connections": [
3 {
4 "donor": {
5 "id": "dnt45612",
6 "name": "Michael Thompson",
7 "bio": "Board member of multiple nonprofits in the Bay Area.",
8 "city": "Oakland",
9 "state": "CA",
10 "giving_capacity": 120000,
11 "net_worth_min": 4000000,
12 "net_worth_max": 6000000,
13 "primary_photo": "https://images.donoratlas.com/photos/dnt45612.jpg"
14 },
15 "strength": 0.87,
16 "snippet": "Same nonprofit board, 3 years overlap",
17 "connecting_entity_name": "Bay Area Education Fund",
18 "connecting_entity_type": "nonprofit",
19 "source_relationship": "Board Member",
20 "target_relationship": "Board Member"
21 }
22 ],
23 "total_found": 12,
24 "donor": {
25 "id": "dnt78945",
26 "name": "Emily Carter",
27 "bio": "Philanthropist focused on education and healthcare initiatives.",
28 "city": "San Francisco",
29 "state": "CA",
30 "giving_capacity": 150000,
31 "net_worth_min": 5000000,
32 "net_worth_max": 7500000,
33 "primary_photo": "https://images.donoratlas.com/photos/dnt78945.jpg"
34 }
35}

Given any donor ID, compute their strongest connections across the entire DonorAtlas database. Results are ranked by connection strength (strongest first). This does not require the donor to be in a network — connections are computed at query time. This endpoint can take up to 20 seconds depending on how many affiliations the donor has.

Was this page helpful?
Previous

Remove members

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_idstringRequired>=1 character
DonorAtlas donor ID to look up connections for
limitintegerOptional1-100Defaults to 20
Maximum number of connections to return
min_strengthdoubleOptional0-1Defaults to 0.45

Minimum connection strength threshold. Unlike network-based endpoints, lookup computes connections at query time, so the full 0.0–1.0 range is available

Response

Successful Response
connectionslist of objects
total_foundinteger

Total connections found above min_strength (before limit)

donorobject or null
The queried donor's profile

Errors

422
Unprocessable Entity Error