Retrieve all news related to a given project

GET /data/projects/{project_id}/news

Path parameters

  • project_id string(uuid) Required

Query parameters

  • before string(date)
  • after string(date)
  • page integer

    Default value is 1.

  • limit integer

    Default value is 50.

  • person_id string(uuid)
  • task_type_id string(uuid)
  • task_status_id string(uuid)
  • episode_id string(uuid)
  • only_preview boolean

    Default value is false.

Responses

  • 200 application/json

    All news related to given project

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
      • id string(uuid)
      • title string
      • content string
      • created_at string(date-time)
      • author_id string(uuid)
    • stats object
      Hide stats attribute Show stats attribute object
      • total integer
  • 404

    Project not found

GET /data/projects/{project_id}/news
curl \
 --request GET 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/news' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "id": "string",
      "title": "string",
      "content": "string",
      "created_at": "2025-05-04T09:42:00Z",
      "author_id": "string"
    }
  ],
  "stats": {
    "total": 42
  }
}