Skip to main content
POST
/
api
/
v1
/
notion
/
page
/
create-markdown
Create page from markdown
curl --request POST \
  --url https://{deployment}/api/v1/notion/page/create-markdown \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-Notion-Token: <api-key>' \
  --data '
{
  "parent_id": "abc123",
  "title": "New page",
  "markdown": "## Hello"
}
'
{}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

X-Notion-Token
string
header
required

Your Notion integration token / internal token. Supplied by the caller (not stored server-side).

Body

application/json

The body is of type object.

Response

Created page

The response is of type object.