Skip to main content
GET
/
feed
/
posts
Get Feed Posts
curl --request GET \
  --url https://api.givingcompass.org/insights/feed/posts \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "organization_ein": "<string>",
      "post_title": "<string>",
      "organization_name": "<string>",
      "organization_city": "<string>",
      "organization_state": "<string>",
      "post_id": "<string>",
      "post_classification": "<string>",
      "post_description": "<string>",
      "post_content": "<string>",
      "post_url": "<string>",
      "post_published_date": "<string>",
      "post_author": "<string>",
      "post_categories": [
        "<string>"
      ],
      "post_tags": [
        "<string>"
      ]
    }
  ],
  "total": 123,
  "page": 123,
  "size": 123
}

Authorizations

X-API-Key
string
header
required

Add a header [X-API-Key] with the token

Query Parameters

classification
string | null

Filter by post classification/content type (article, video, event, podcast, job_posting, volunteer_opportunity)

search
string | null

Search query for post titles and content

Maximum string length: 256
view
string | null

View mode: 'latest' (all posts) or 'following' (favorited nonprofits only)

city
string | null

Filter posts by the city of the nonprofit organization

Required string length: 2 - 100
county
string | null

Filter posts by the county of the nonprofit organization

Required string length: 2 - 100
state
string | null

Filter posts by the state of the nonprofit organization (2 character abbreviation)

Required string length: 2
zip_code
string | null

Filter posts by the ZIP code of the nonprofit organization (5 digits)

ntee_codes
string[] | null

Filter posts by NTEE (National Taxonomy of Exempt Entities) codes of the nonprofit organization

page
integer
default:1

Page number

Required range: x >= 1
size
integer
default:10

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

items
NonprofitPostResponse · object[]
required
total
integer
required
page
integer
required
size
integer
required