[[dashboard-api-export]]
=== Export dashboard API
++++
Export dashboard
++++
deprecated::[7.15.0,Use the {api-kibana}/group/endpoint-saved-objects[saved objects API] instead.]
Export dashboards and corresponding saved objects.
[[dashboard-api-export-request]]
==== Request
`GET :/api/kibana/dashboards/export`
`GET :/s//api/kibana/dashboards/export`
[[dashboard-api-export-params]]
==== Query parameters
`dashboard`::
(Required, array|string) The IDs of the dashboards that you want to export.
To export multiple dashboards, repeat the query parameter.
[[dashboard-api-export-response-body]]
==== Response body
`objects`::
(array) A top level property that includes the saved objects. The order of the objects is not guaranteed. Use the exact response body as the request body for the corresponding <>.
[[dashboard-api-export-codes]]
==== Response code
`200`::
Indicates a successful call.
[float]
[[dashboard-api-export-example]]
==== Example
[source,sh]
--------------------------------------------------
$ curl -X GET api/kibana/dashboards/export?dashboard=942dcef0-b2cd-11e8-ad8e-85441f0c2e5c <1>
--------------------------------------------------
// KIBANA
<1> The dashboard ID is `942dcef0-b2cd-11e8-ad8e-85441f0c2e5c`.