Skip to main content
GET
/
v1
/
resume
/
{id}
/
share
List Resume Shares
curl --request GET \
  --url https://api.mokaru.ai/v1/resume/{id}/share \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "shareUrl": "<string>",
      "blurOptions": {},
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "total": 123
}

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

Returns the public share links for a specific resume. In practice the in-app upsert behaviour means at most one share per resume exists, but the schema does not enforce uniqueness so this endpoint returns an array for forward-compatibility.
Scope required: resume:share | Rate limit: 30 requests/min

Request

GET /v1/resume/{id}/share

Example

curl "https://api.mokaru.ai/v1/resume/clx1234/share" \
  -H "Authorization: Bearer mk_your_key"

Response

data
array
Share list.
total
integer
Total shares for this resume.