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 donor metadata

GET
https://api.donoratlas.com/v1/partners/donors/:donor_id/metadata
GET
/v1/partners/donors/:donor_id/metadata
$curl https://api.donoratlas.com/v1/partners/donors/donor_id/metadata \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "metadata": {
3 "donor_id": "dnt78945",
4 "date_last_updated": "2024-05-20T15:42:00+00:00",
5 "has_mobile_phone": true,
6 "has_verified_email": false,
7 "is_enhanced": true,
8 "no_sources_found": false
9 }
10}

Retrieve lightweight metadata for a single donor by their DonorAtlas ID. Returns the last-updated date, contact info availability, and enrichment status without the full donor profile.

Was this page helpful?
Previous

Get metadata in bulk

Next
Built with

Authentication

x-api-keystring

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

Path parameters

donor_idstringRequired1-100 characters
DonorAtlas donor ID

Response

Successful Response
metadataobject
Donor metadata

Errors

404
Not Found Error
422
Unprocessable Entity Error