Spaces method and path for this operation:
Refer to Spaces for more information.
WARNING: This API is deprecated. This is a legacy Saved Objects API and may be removed in a future version of Kibana.
Searches for Kibana saved objects.
For transferring or backing up saved objects, prefer the export API (POST /api/saved_objects/_export).
Query parameters
-
The number of items per page.
Minimum value is
0. Default value is20. -
The page index to return.
Minimum value is
0. Default value is1. -
The saved object type or types to search for. Use multiple
typevalues to search across types.Not more than
100elements. -
A text search string.
-
The boolean operator to use when combining multiple values.
Values are
ORorAND. Default value isOR. -
The fields to search on.
Not more than
100elements. -
The field to sort on.
-
Return only saved objects that have a reference to the specified saved object(s).
-
The boolean operator to use when combining multiple values.
Values are
ORorAND. Default value isOR. -
Return only saved objects that do not have a reference to the specified saved object(s).
-
The boolean operator to use when combining multiple values.
Values are
ORorAND. Default value isOR. -
The fields to return for each saved object.
Not more than
100elements. -
A KQL filter to apply to the search.
-
Aggregations as a JSON string.
-
The namespaces (spaces) to search in.
Not more than
100elements.
curl \
-X GET "${KIBANA_URL}/api/saved_objects/_find?type=dashboard&fields=title&per_page=20&page=1" \
-H "Authorization: ApiKey ${API_KEY}"
GET kbn://api/saved_objects/_find?type=dashboard&fields=title&per_page=20&page=1
{
"page": 1,
"per_page": 20,
"saved_objects": [
{
"attributes": {
"title": "Example dashboard 1"
},
"id": "example-dashboard-1",
"managed": false,
"namespaces": [
"default"
],
"references": [],
"type": "dashboard",
"updated_at": "2026-04-17T12:00:00.000Z",
"version": "WzEsMV0="
}
],
"total": 1
}
{
"error": "Bad Request",
"message": "This type dashboard is not allowed: Bad Request",
"statusCode": 400
}