The Meraki Dashboard API (referred to as Meraki API) is a RESTful API interface that allows you to programmatically manage and monitor Meraki networks at scale.
Meraki APIs provide a range of operations to
Checkout out theExplore section for open source projects, or browse theMarketplace for partner solutions.
A resource is an entity or component within the Meraki ecosystem. Resources represent the various elements of a network. Here are some examples of Meraki resources:
Each resource is typically represented by a unique URL. You can use APIs to configure or retrieve information about these resources.
A service is a functionality or a set of API operations that interact with the resources of a Meraki product. (These operations are specific actions performed on a resource, such as GET, POST, PUT, or DELETE.) Services perform specific actions on resources such as:
A Meraki product refers to the hardware and software solutions offered by Cisco Meraki that are used to build and manage network infrastructure. These products include wireless access points, switches, or security appliances.
The resource URL or path contains the name of the Meraki product to reduce ambiguity when working with similar yet unique functionality.
The format of the path is 'product/service'.
Examples of a Path:
/appliance/ports
/switch/ports
A base URI is the root address or endpoint that serves as the starting point for accessing the API's resources. The base URI includes the protocol, domain, and base path. All API requests append specific resource paths to this base URI.
For most regions, the base URI for API requests ishttps://api.meraki.com/api/v1
.
Different countries may have different base URIs, see therespective base URI section.
Visit theExplore section for open-source projects, or browse theMarketplace for partner solutions.