Skip to main content
GET
/
milestones
/
{id}
/
comments
List comments on a milestone
curl --request GET \
  --url https://slog.ai/milestones/{id}/comments \
  --header 'slog-api-key: <api-key>'
{
  "comments": [
    {
      "id": "cmnt_01jqcomment01",
      "content": "This is blocked by the auth service migration.",
      "authorId": "user_01jquser0001",
      "author": {
        "id": "user_01jquser0001",
        "name": "Alex Johnson",
        "email": "[email protected]",
        "avatarUrl": null,
        "humanId": null
      },
      "taskId": "task_01jqabcd1111",
      "projectId": null,
      "milestoneId": null,
      "createdAt": "2026-05-10T11:00:00.000Z",
      "updatedAt": "2026-05-10T11:00:00.000Z"
    }
  ],
  "pagination": {
    "limit": 50,
    "nextCursor": null
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Path Parameters

id
string
required

Resource ID (UPID) or, for tasks and projects, the human-readable reference such as ENG-42.

Query Parameters

limit
integer
default:50

Maximum number of results to return per page.

Required range: 1 <= x <= 250
cursor
string

Opaque cursor from the nextCursor field of a previous response. Pass this to fetch the next page.

Response

Comments ordered oldest-first.

comments
object[]
pagination
object