Skip to main content
GET
/
v1
/
awards
/
{id}
Get Award
curl --request GET \
  --url https://api.mokaru.ai/v1/awards/{id} \
  --header 'Authorization: Bearer <token>'

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 a single award by id.
Scope required: awards:read | Rate limit: 30 requests/min

Request

GET /v1/awards/clx...

Path Parameters

id
string
required
Award id (from list-awards)

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"
  }
}
Returns 404 if the award does not exist or does not belong to the authenticated user.