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 all networks

GET
https://api.donoratlas.com/v1/partners/networks
GET
/v1/partners/networks
$curl https://api.donoratlas.com/v1/partners/networks \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "networks": [
3 {
4 "network_id": "a3f1c9d2-7b4e-4f8a-9c3d-2e5b7f1a9d8c",
5 "name": "Major Donors Network",
6 "color": "indigo",
7 "created_at": "2024-05-10T09:15:00Z",
8 "member_count": 125,
9 "total_connection_count": 342
10 }
11 ]
12}
List all networks for the team with member and connection counts.
Was this page helpful?
Previous

Add a member

Next
Built with

Authentication

x-api-keystring

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

Response

Successful Response
networkslist of objects