Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Install the library

The best way to interact with our API is to use one of our official libraries:

# Install via NPM
npm install --save meraki-sdk

Make your first request

To make your first request, send an authenticated request to get the business info

// require the myapi module and set it up with your API key
import MerakiSDK from 'meraki-sdk';

MerakiSDK.init({
  bizId: 1,
  bizApiKey: 'API_KEY',
});
const response = await MerakiSDK.getBusinessInfo();

Last updated