EduCare
API Reference

Get an announcement by ID

GET
/announcements/{id}

Authorization

BearerAuth
AuthorizationBearer <token>

Obtain your API key from the developer dashboard at https://dashboard.educare.com

In: header

Path Parameters

id*integer

Response Body

application/json

application/json

application/json

curl -X GET "https://api.educare.com/v1/announcements/0"
{
  "id": 3456,
  "title": "Winter Break Schedule",
  "content": "School will be closed from December 23rd to January 3rd. Classes resume January 6th, 2026.",
  "scope": "school",
  "class_id": null,
  "grade_level": null,
  "priority": "high",
  "author_id": 567,
  "published_at": "2025-12-15T09:00:00Z",
  "expires_at": "2026-01-06T08:00:00Z",
  "created_at": "2025-12-14T16:30:00Z"
}
{
  "error": "Invalid API key",
  "code": "UNAUTHORIZED",
  "status": 401
}
{
  "error": "Student not found",
  "code": "NOT_FOUND",
  "status": 404
}