Skip to main content

Overview

The Nonprofit Feed endpoint provides access to content posted by nonprofit organizations. This includes articles, videos, events, podcasts, job postings, and volunteer opportunities.

Features

  • Content Filtering: Filter by classification type (articles, videos, events, etc.)
  • Location-Based: Filter posts by nonprofit location (city, state, county, ZIP)
  • Cause Area Filtering: Filter by NTEE codes to find content from organizations in specific cause areas
  • Search: Full-text search across post titles and content
  • Pagination: Efficiently browse through large result sets

Endpoint

Get Feed Posts

GET /feed/postsRetrieve posts from nonprofits with flexible filtering options

Common Use Cases

Get Latest Articles

GET /feed/posts?classification=article&size=20

Filter by Location

GET /feed/posts?state=CA&city=San%20Francisco

Search for Specific Topics

GET /feed/posts?search=climate%20change

Filter by Cause Area

GET /feed/posts?ntee_codes=A20,B25

Response Format

The endpoint returns paginated results with the following structure:
{
  "results": [
    {
      "id": "string",
      "title": "string",
      "content": "string",
      "classification": "article",
      "organization_name": "string",
      "ein": "123456789",
      "published_date": "2024-01-01T00:00:00Z",
      "url": "string"
    }
  ],
  "total": 100,
  "page": 1,
  "size": 20
}