Spaces method and path for this operation:
get /s/{space_id}/api/markdowns
Refer to Spaces for more information.
Returns a paginated list of markdown library items. Each result includes title, description, and metadata, but not the content. Use GET /api/markdowns/{id} to retrieve the complete state.
Query parameters
-
The page of results to return.
Minimum value is
1. Default value is1. -
The number of results to return per page.
Minimum value is
1, maximum value is1000. Default value is20. -
Filters results by
titleanddescriptionusing Elasticsearchsimple_query_stringsyntax. Multi-word terms require all words to match.
GET
/api/markdowns
Search markdown library items - cURL
curl -X GET "${KIBANA_URL}/api/markdowns?query=welcome&per_page=10" \
-H "Authorization: ApiKey ${API_KEY}"
GET kbn:/api/markdowns?query=welcome&per_page=10
Response examples (200)
Paginated list of markdown library item summaries. Each item includes the ID, a subset of state fields (`title` and `description`), and metadata. The full `content` is not included; use `GET /api/markdowns/{id}` to retrieve a specific item.
{
"data": [
{
"data": {
"description": "Intro and context for the web logs dashboard.",
"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"
}
}
],
"meta": {
"page": 1,
"per_page": 20,
"total": 1
}
}