Skip to main content
GET
https://api.grainledger.com
/
api
/
v1
/
contributions
List contributions
curl --request GET \
  --url https://api.grainledger.com/api/v1/contributions \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Organization-Id: <x-organization-id>'
const options = {
  method: 'GET',
  headers: {'X-Organization-Id': '<x-organization-id>', Authorization: 'Bearer <token>'}
};

fetch('https://api.grainledger.com/api/v1/contributions', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
import requests

url = "https://api.grainledger.com/api/v1/contributions"

headers = {
    "X-Organization-Id": "<x-organization-id>",
    "Authorization": "Bearer <token>"
}

response = requests.get(url, headers=headers)

print(response.text)
{
  "contributions": [
    {
      "id": "cm333ccc444ddd",
      "donorId": "cm456def789ghi",
      "amount": 250,
      "date": "2026-07-06T00:00:00.000Z",
      "fundId": "cm789ghi012jkl",
      "method": "CHECK",
      "isTaxDeductible": true,
      "externalSource": "MANUAL"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 890,
    "totalPages": 45
  }
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}
{
  "message": "You do not have access to this organization."
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

X-Organization-Id
string
required

Organization ID for multi-tenant data access

Query Parameters

page
integer
default:1

Page number (1-based)

Required range: x >= 1
limit
integer
default:20

Records per page

Required range: 1 <= x <= 1000
donorId
string
fundId
string
isSettled
enum<string>
Available options:
true,
false
isCleared
enum<string>
Available options:
true,
false
hasDonor
enum<string>
Available options:
true,
false
externalSource
enum<string>
Available options:
PUSHPAY,
PLANNING_CENTER,
CCB,
TITHELY,
SUBSPLASH,
ROCK_RMS,
MANUAL,
OTHER
dateFrom
string<date>
dateTo
string<date>

Response

Paginated contributions

contributions
object[]
pagination
object
Last modified on July 8, 2026