Skip to content

Export A Page

GET
/pages/{pageId}/export/markdown
curl --request GET \
--url https://markdawn.space/api/v1/pages/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/export/markdown \
--header 'Authorization: Bearer <token>'

Returns one page as markdown. When the page has attachments, the response is a ZIP containing the markdown and attachments.

pageId
required
string format: uuid

The UUID of the page.

The page as markdown, or a ZIP containing markdown and attachments.

string

The API token is missing a required scope: pages:read.

Media typeapplication/json

Structured error returned when the request cannot be completed.

object
error
required

Error details for programmatic handling.

object
code
required

Stable error code.

string
message
required

Human-readable explanation.

string
Examplegenerated
{
"error": {
"code": "example",
"message": "example"
}
}