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

List donors in network

GET
https://api.donoratlas.com/v1/partners/networks/:network_id/members
GET
/v1/partners/networks/:network_id/members
$curl https://api.donoratlas.com/v1/partners/networks/network_id/members \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "members": [
3 {
4 "donor": {
5 "id": "d3f9a7b2-4c1e-4f8a-9b2d-7e5a1c2f9b8d",
6 "name": "Emily Johnson",
7 "bio": "Philanthropist focused on education and healthcare initiatives.",
8 "city": "San Francisco",
9 "state": "CA",
10 "giving_capacity": 500000,
11 "net_worth_min": 2000000,
12 "net_worth_max": 3500000,
13 "primary_photo": "https://images.donoratlas.com/photos/emily_johnson.jpg"
14 },
15 "added_at": "2023-11-15T09:30:00Z",
16 "connection_count": 12
17 }
18 ],
19 "total_donors_in_network": 125,
20 "limit": 1,
21 "offset": 0
22}
List all donors in a network with their names, photos, and connection counts.
Was this page helpful?
Previous

Find connected prospects

Next
Built with

Authentication

x-api-keystring

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

Path parameters

network_idstringRequired

Query parameters

limitintegerOptional1-200Defaults to 50
offsetintegerOptional>=0Defaults to 0

Response

Successful Response
memberslist of objects
total_donors_in_networkinteger
limitinteger
offsetinteger

Errors

422
Unprocessable Entity Error