Skip to main content
GET
/
v1
/
awards
List Awards
curl --request GET \
  --url https://api.mokaru.ai/v1/awards \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {}
  ],
  "total": 123,
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt

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

Overview

Retrieve all awards and honors on the authenticated user’s career profile.
Scope required: awards:read | Rate limit: 60 requests/min

Request

GET /v1/awards?limit=25&offset=0

Query Parameters

limit
number
default:"25"
Results per page (max 100)
offset
number
default:"0"
Pagination offset

Response

{
  "data": [
    {
      "id": "clx...",
      "name": "Best Engineer of the Year",
      "organisation": "ACM",
      "description": "Annual recognition for outstanding contributions",
      "date": "2024-12-01T00:00:00.000Z",
      "createdAt": "2026-01-15T10:00:00.000Z",
      "updatedAt": "2026-01-15T10:00:00.000Z"
    }
  ],
  "total": 3,
  "hasMore": false,
  "limit": 25,
  "offset": 0
}
data
Award[]
Array of award objects (sorted by date descending)
total
number
Total awards matching the query
hasMore
boolean
Whether more pages are available