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
      • GETGet a single donor
      • POSTGet multiple donors
      • GETGet donor metadata
      • POSTGet metadata in bulk
LogoLogo
DonorAtlasDashboard
API ReferenceDonors

Get metadata in bulk

POST
https://api.donoratlas.com/v1/partners/donors/metadata/batch
POST
/v1/partners/donors/metadata/batch
$curl -X POST https://api.donoratlas.com/v1/partners/donors/metadata/batch \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_ids": [
> "abc123",
> "def456"
> ]
>}'
1{
2 "metadata": [
3 {
4 "donor_id": "abc123",
5 "date_last_updated": "2025-12-01T00:00:00+00:00",
6 "has_mobile_phone": true,
7 "has_verified_email": true,
8 "is_enhanced": true,
9 "no_sources_found": true
10 }
11 ],
12 "not_found": [
13 "def456"
14 ]
15}

Retrieve lightweight metadata for up to 100 donors by their DonorAtlas IDs. Returns last-updated dates, contact info availability, and enrichment status for all found donors, plus a list of any IDs that were not found.

Was this page helpful?
Previous

Submit person records for enhancement

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

List of DonorAtlas donor IDs to retrieve metadata for (1-100)

Response

Successful Response
metadatalist of objects
List of donor metadata
not_foundlist of strings
Donor IDs that were not found

Errors

422
Unprocessable Entity Error