.. _rest: REST ==== GeoServer provides a `RESTful `_ interface through which clients can retrieve information about an instance and make configuration changes. Using the REST interface's simple HTTP calls, clients can configure GeoServer without needing to use the :ref:`web_admin`. REST is an acronym for "`REpresentational State Transfer `_". REST adopts a fixed set of operations on named resources, where the representation of each resource is the same for retrieving and setting information. In other words, you can retrieve (read) data in an XML format and also send data back to the server in similar XML format in order to set (write) changes to the system. Operations on resources are implemented with the standard primitives of HTTP: GET to read; and PUT, POST, and DELETE to write changes. Each resource is represented as a URL, such as ``http://GEOSERVER_HOME/rest/workspaces/topp``. API --- The following links provide direct access to the GeoServer REST API documentation, including definitions and examples of each endpoint: * :api:`/about/manifests ` * :api:`/datastores ` * :api:`/coverages ` * :api:`/coveragestores ` * :api:`/featuretypes ` * :api:`/fonts ` * :api:`/layergroups ` * :api:`/layers ` * :api:`/monitoring ` * :api:`/namespaces ` * :api:`/services/wms|wfs|wcs/settings ` * :api:`/reload ` * :api:`/resource ` * :api:`/security ` * :api:`/settings ` * :api:`/structuredcoverages ` * :api:`/styles ` * :api:`/templates ` * :api:`/transforms ` * :api:`/wmslayers ` * :api:`/wmsstores ` * :api:`/wmtslayers ` * :api:`/wmtsstores ` * :api:`/workspaces ` * :api:`/usergroup ` * :api:`/roles ` * GeoWebCache: * :api:`/blobstores ` * :api:`/bounds ` * :api:`/diskquota ` * :api:`/filterupdate ` * :api:`/global ` * :api:`/gridsets ` * :api:`/index ` * :api:`/layers ` * :api:`/masstruncate ` * :api:`/statistics ` * :api:`/reload ` * :api:`/seed ` * Importer extension: * :api:`/imports ` * :api:`/imports (tasks) ` * :api:`/imports (transforms) ` * :api:`/imports (data) ` * Monitor extension: * :api:`/monitor ` * XSLT extension: * :api:`/services/wfs/transforms ` .. note:: You can also view the original :ref:`rest_api` section. Examples -------- This section contains a number of examples which illustrate some of the most common uses of the REST API. They are grouped by endpoint. .. toctree:: :maxdepth: 1 about fonts layergroups layers security styles workspaces stores imagemosaic appschema .. toctree:: :maxdepth: 1 :hidden: api/index