Skip to main content
GET
/
v1
/
interests
/
{id}
Get Interest
curl --request GET \
  --url https://api.mokaru.ai/v1/interests/{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 interest/hobby by id.
Scope required: interests:read | Rate limit: 30 requests/min

Request

GET /v1/interests/clx...

Path Parameters

id
string
required
Interest id (from list-interests)

Response

{
  "data": {
    "id": "clx...",
    "name": "Photography",
    "description": "Landscape and street photography",
    "createdAt": "2026-01-15T10:00:00.000Z",
    "updatedAt": "2026-01-15T10:00:00.000Z"
  }
}