Spaces method and path for this operation:
get /s/{space_id}/api/markdowns/{id}
Refer to Spaces for more information.
Returns the complete state of a markdown library item by ID.
GET
/api/markdowns/{id}
Get a markdown library item - cURL
curl -X GET "${KIBANA_URL}/api/markdowns/5e1f3a20-c4d6-11ef-be8b-3c7c2b9d1f4e" \
-H "Authorization: ApiKey ${API_KEY}"
GET kbn:/api/markdowns/5e1f3a20-c4d6-11ef-be8b-3c7c2b9d1f4e
Response examples (200)
The full markdown library item state including `content`, `settings`, and metadata.
{
"data": {
"content": "## Web logs overview\n\nA quick reference for the **Kibana sample web logs** dataset (`kibana_sample_data_logs`).\n\n**Key metrics in this dashboard:**\n\n- Total request count by HTTP method\n- Average response size over time\n- Geographic distribution of client IPs\n\n> Use the time picker above to narrow the dashboard to an incident window.\n\nFor field reference, see the [sample data documentation](https://www.elastic.co/docs/manage-data/ingest/sample-data).\n",
"description": "Intro and context for the web logs dashboard.",
"settings": {
"open_links_in_new_tab": true
},
"title": "Web logs overview"
},
"id": "5e1f3a20-c4d6-11ef-be8b-3c7c2b9d1f4e",
"meta": {
"created_at": "2026-04-13T10:00:00.000Z",
"managed": false,
"updated_at": "2026-04-13T10:00:00.000Z",
"version": "WzU5LDFd"
}
}