Skip to main content
POST
/
v1
/
publications
Create Publication
curl --request POST \
  --url https://api.mokaru.ai/v1/publications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "publisher": "<string>",
  "date": "<string>",
  "url": "<string>",
  "description": "<string>"
}
'

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

Add a new publication to the authenticated user’s profile.
Scope required: publications:write | Rate limit: 20 requests/min

Request

POST /v1/publications
Content-Type: application/json

Body Parameters

name
string
required
Publication title (max 300 characters)
publisher
string
Publisher name (max 200 characters)
date
string
ISO 8601 publication date
url
string
URL to the publication (max 500 characters)
description
string
Free-text description

Response

{
  "success": true,
  "id": "clx..."
}