Get news from open projects

GET /data/projects/news

Returns the latest news and activity feed from all projects the user has access to.

Query parameters

  • project_id string(uuid)

    Filter news by specific project

  • before string(date)

    Filter news before this date

  • after string(date)

    Filter news after this date

  • page integer

    Page number for pagination

    Default value is 1.

  • limit integer

    Number of news items per page

    Default value is 50.

  • person_id string(uuid)

    Filter news by specific team member

  • task_type_id string(uuid)

    Filter news by task type

  • task_status_id string(uuid)

    Filter news by task status

  • episode_id string(uuid)

    Filter news by specific episode

  • only_preview boolean

    Show only news related to preview uploads

    Default value is false.

Responses

  • 200 application/json

    News feed successfully retrieved

    Hide response attributes Show response attributes object
    • data array[object]

      Array of news items

    • stats object

      News statistics

    • total integer

      Total number of news items

GET /data/projects/news
curl \
 --request GET 'http://api.example.com/data/projects/news' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {}
  ],
  "stats": {},
  "total": 42
}