API Reference

Meetings

Read meeting metadata, agendas, and published minutes for any committee in your organisation.

Base URL: https://quorate.app/api/v1

GET/meetingsscope: meetings:read

List meetings (paginated, newest first).

curl -H "Authorization: Bearer qrt_xxxxxxxxxxxxxxxx" \
     https://quorate.app/api/v1/meetings
GET/meetings/{id}scope: meetings:read

Meeting detail with agenda items.

curl -H "Authorization: Bearer qrt_xxxxxxxxxxxxxxxx" \
     https://quorate.app/api/v1/meetings/MEETING_OR_ROW_ID
GET/meetings/{id}/minutesscope: meetings:read

Approved or published-draft minutes for a meeting.

Only returns minutes in `approved` or `published_draft` status. Use this for public republishing.

curl -H "Authorization: Bearer qrt_xxxxxxxxxxxxxxxx" \
     https://quorate.app/api/v1/meetings/MEETING_OR_ROW_ID/minutes

More