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>"
}
'

Overview

Add a new publication to the authenticated user’s base resume.
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..."
}