The Markdown Importer REST API allows you to programmatically import markdown content into Confluence pages. This feature is designed for automation workflows, CI/CD pipelines, bulk migrations, and custom integrations.
Explore the REST API documentation:
curl -X POST "YOUR_API_ENDPOINT" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"spaceId": "DOCS",
"parentId": "123456789",
"pageTitle": "My First API Page",
"content": "# Hello World\n\nThis is my first API-created page!",
"overwrite": false
}'
Document Version: 1.0 Last Updated: 2025-10-07 Product: Markdown Importer for Confluence