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

Request

GET /v1/publications/clx...

Path Parameters

id
string
required
Publication id (from list-publications)

Response

{
  "data": {
    "id": "clx...",
    "name": "Scaling React Apps to Millions of Users",
    "publisher": "Smashing Magazine",
    "date": "2024-05-10T00:00:00.000Z",
    "url": "https://smashingmagazine.com/...",
    "description": "...",
    "createdAt": "2026-01-15T10:00:00.000Z",
    "updatedAt": "2026-01-15T10:00:00.000Z"
  }
}