curl --request POST \
--url https://{deployment}/api/v1/notion/bulk-insert \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-Notion-Token: <api-key>' \
--data '
{
"notion_id": "26f...",
"records": [
{
"Name": "Page 1",
"Status": "Active"
}
]
}
'import requests
url = "https://{deployment}/api/v1/notion/bulk-insert"
payload = {
"notion_id": "26f...",
"records": [
{
"Name": "Page 1",
"Status": "Active"
}
]
}
headers = {
"X-API-KEY": "<api-key>",
"X-Notion-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-Notion-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({notion_id: '26f...', records: [{Name: 'Page 1', Status: 'Active'}]})
};
fetch('https://{deployment}/api/v1/notion/bulk-insert', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{deployment}/api/v1/notion/bulk-insert",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'notion_id' => '26f...',
'records' => [
[
'Name' => 'Page 1',
'Status' => 'Active'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-Notion-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{deployment}/api/v1/notion/bulk-insert"
payload := strings.NewReader("{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-Notion-Token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{deployment}/api/v1/notion/bulk-insert")
.header("X-API-KEY", "<api-key>")
.header("X-Notion-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{deployment}/api/v1/notion/bulk-insert")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-Notion-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"total": 123,
"successful": 123,
"failed": 123,
"results": [
{
"index": 123,
"success": true,
"page_id": "<string>",
"data": {},
"error": "<string>",
"error_code": "<string>"
}
],
"failed_data": [
{}
],
"error_message": "<string>"
}{
"success": false,
"error": "<string>"
}Bulk insert records
Creates up to 100 pages in a Notion database/data source from simple property maps. Identify the target with data_source_id (multi-data-source DBs), notion_id (auto-detect), or database_id. Requires a Basic license.
curl --request POST \
--url https://{deployment}/api/v1/notion/bulk-insert \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-Notion-Token: <api-key>' \
--data '
{
"notion_id": "26f...",
"records": [
{
"Name": "Page 1",
"Status": "Active"
}
]
}
'import requests
url = "https://{deployment}/api/v1/notion/bulk-insert"
payload = {
"notion_id": "26f...",
"records": [
{
"Name": "Page 1",
"Status": "Active"
}
]
}
headers = {
"X-API-KEY": "<api-key>",
"X-Notion-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-Notion-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({notion_id: '26f...', records: [{Name: 'Page 1', Status: 'Active'}]})
};
fetch('https://{deployment}/api/v1/notion/bulk-insert', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{deployment}/api/v1/notion/bulk-insert",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'notion_id' => '26f...',
'records' => [
[
'Name' => 'Page 1',
'Status' => 'Active'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-Notion-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{deployment}/api/v1/notion/bulk-insert"
payload := strings.NewReader("{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-Notion-Token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{deployment}/api/v1/notion/bulk-insert")
.header("X-API-KEY", "<api-key>")
.header("X-Notion-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{deployment}/api/v1/notion/bulk-insert")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-Notion-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"notion_id\": \"26f...\",\n \"records\": [\n {\n \"Name\": \"Page 1\",\n \"Status\": \"Active\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"total": 123,
"successful": 123,
"failed": 123,
"results": [
{
"index": 123,
"success": true,
"page_id": "<string>",
"data": {},
"error": "<string>",
"error_code": "<string>"
}
],
"failed_data": [
{}
],
"error_message": "<string>"
}{
"success": false,
"error": "<string>"
}Authorizations
Your deployment's API key (MMK_API_KEY).
Your Notion integration token / internal token. Supplied by the caller (not stored server-side).
Body
Provide one of data_source_id / notion_id / database_id to identify the target (priority: data_source_id > notion_id > database_id).
Simple property maps, one per page (max 100).
Legacy database ID.
Data source ID (multi-data-source databases).
Auto-detect — accepts either a database or data source ID.
Optional concurrency/retry config.
Show child attributes
Show child attributes
Global page-creation options applied to every created page.
Show child attributes
Show child attributes
Was this page helpful?

