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
      • POSTExport donors to CSV or XLSX
      • GETGet all exports for the team
LogoLogo
DonorAtlasDashboard
API ReferenceExport

Get all exports for the team

GET
https://api.donoratlas.com/v1/partners/exports
GET
/v1/partners/exports
$curl https://api.donoratlas.com/v1/partners/exports \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "exports": [
3 {
4 "export_id": "a3f1c9d2-7b4e-4f8a-9d3e-2b5f6c7d8e9f",
5 "export_type": "csv",
6 "donor_count": 1250,
7 "created_at": "2024-01-15T09:30:00Z",
8 "is_processing": true,
9 "name": "January Donor List Export",
10 "error_message": null
11 }
12 ],
13 "total_count": 1,
14 "has_more": false
15}
Returns metadata for all exports that have been created by the team. Supports pagination via limit and offset query parameters.
Was this page helpful?
Previous

Create a new donor list

Next
Built with

Authentication

x-api-keystring

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

Query parameters

limitintegerOptional1-100Defaults to 50
Maximum number of exports to return
offsetintegerOptional>=0Defaults to 0
Number of exports to skip

Response

Exports retrieved successfully
exportslist of objects
All exports for the team
total_countinteger
Total number of exports for the team
has_moreboolean
Whether there are more exports beyond the current page

Errors

422
Unprocessable Entity Error