List all annotations

List all annotations

In this article, you will learn how to list all annotations in a single annotation group.

List all annotations

Request Type: GET
Authorization Header: Authorization: ApiKey <my_api_token>
URL: https://app.banyanboard.com/api/annotation_groups/<my_annotation_group_uuid>/annotations/

Results:
Info
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "date_created": "2026-03-18T09:12:45.345678Z",
      "fill_color": "transparent",
      "height": "130.250",
      "path": "M 0 0 h 210 v 130 h -210 z",
      "stroke_color": "#4caf50",
      "stroke_width": 7,
      "top_left_x": "240.300",
      "top_left_y": "180.600",
      "text": "",
      "text_fontsize": 0,
      "type": "rectangle",
      "was_edited": true,
      "uuid": "c1a2b3d4-5e6f-4789-8abc-1234def56789",
      "width": "210.000"
    },
    {
      "date_created": "2026-03-18T09:15:12.987654Z",
      "fill_color": "transparent",
      "height": "115.800",
      "path": "M 60 60 m -60 0 a 60 60 0 1 0 120 0 a 60 60 0 1 0 -120 0",
      "stroke_color": "#9c27b0",
      "stroke_width": 6,
      "top_left_x": "310.750",
      "top_left_y": "250.400",
      "text": "",
      "text_fontsize": 0,
      "type": "circle",
      "was_edited": true,
      "uuid": "f9e8d7c6-b5a4-4321-9fed-5678abc12345",
      "width": "120.000"
    }
  ]
}
    • Related Articles

    • List annotation groups

      In this article, you will learn how to list all annotation groups in a single file. List annotation groups Request Type: GET Authorization Header: Authorization: ApiKey <my_api_token> URL: ...
    • Full screen annotations

      In this article, you will learn about the full screen mode of Colab app and how to draw in it. Full screen mode is especially useful for team meetings, where viewers want to see action in full screen and skip to interesting sections quickly. Before ...
    • Create annotation group

      In this article, you will learn how to create an annotation group. Create annotation group Request Type: POST Authorization Header: Authorization: ApiKey <my_api_token> URL: https://app.banyanboard.com/api/assets/<my_file_uuid>/annotation_groups/ ...
    • Create rectangle annotation

      In this article, you will learn how to create rectangle annotation. Create rectangle annotation Request Type: POST Authorization Header: Authorization: ApiKey <my_api_token> URL: ...
    • Create circle annotation

      In this article, you will learn how to create circle annotation. Create circle annotation Request Type: POST Authorization Header: Authorization: ApiKey <my_api_token> URL: ...