Skip to main content
GET
/
api
/
v1
/
bulletins
List bulletins
curl --request GET \
  --url https://api.example.com/api/v1/bulletins \
  --header 'Authorization: Bearer <token>'
{
  "next": "http://api.example.org/accounts/?cursor=cD00ODY%3D\"",
  "previous": "http://api.example.org/accounts/?cursor=cj0xJnA9NDg3",
  "results": [
    {
      "id": "1fa85f64-5717-4562-b3fc-2c963f66afa1",
      "platform": "television",
      "slot": "evening",
      "scheduled_at": "2026-05-27T19:00:00Z",
      "studio": "Studio A",
      "slot_duration": "00:30:00",
      "editor_on_duty": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "John Doe",
        "employee_number": "EMP-001"
      },
      "editor_in_chief": {
        "id": "4fa85f64-5717-4562-b3fc-2c963f66afa7",
        "name": "Jane Smith",
        "employee_number": "EMP-002"
      },
      "presenters": [
        {
          "id": "5fa85f64-5717-4562-b3fc-2c963f66afa8",
          "name": "Peter Kamau",
          "employee_number": "EMP-003"
        }
      ],
      "report_status": "draft",
      "slots": [],
      "created_at": "2026-05-27T10:00:00Z",
      "updated_at": "2026-05-27T10:00:00Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.capedigital.co.ke/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your JWT token in the format: Bearer

Query Parameters

cursor
string

The pagination cursor value.

page_size
integer

Number of results to return per page.

Response

200 - application/json
results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?cursor=cD00ODY%3D\""

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?cursor=cj0xJnA9NDg3"