Meraki.Api 1.29.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package Meraki.Api --version 1.29.8
                    
NuGet\Install-Package Meraki.Api -Version 1.29.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Meraki.Api" Version="1.29.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meraki.Api" Version="1.29.8" />
                    
Directory.Packages.props
<PackageReference Include="Meraki.Api" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Meraki.Api --version 1.29.8
                    
#r "nuget: Meraki.Api, 1.29.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Meraki.Api&version=1.29.8
                    
Install Meraki.Api as a Cake Addin
#tool nuget:?package=Meraki.Api&version=1.29.8
                    
Install Meraki.Api as a Cake Tool

Meraki.Api

Nuget Nuget License: MIT Codacy Badge

This project implements access to the v1 Meraki API

See the contribution guide for more information regarding contributing to this project

To use the Meraki API nuget package:

Visual Studio

  1. Open your project in Visual Studio
  2. Right-click on the project and click "Manage Nuget packages"
  3. Find the package "Meraki.Api" - install the latest version

Example code (C# 11)

using Meraki.Api;
using System;
using System.Threading.Tasks;

namespace My.Project
{
	public static class Program
	{
		public static async Task Main()
		{
			using var merakiClient = new MerakiClient(new MerakiClientOptions
			{
				ApiKey = "0123456789abcdef0123456789abcdef01234567"
			});

			var organizations = await merakiClient
				.Organizations
				.GetOrganizationsAsync()
				.ConfigureAwait(false);

			var firstOrganization = organizations[0];

			var devices = await merakiClient
				.Organizations
				.Devices
				.GetOrganizationDevicesAsync(firstOrganization.Id)
				.ConfigureAwait(false);

			Console.WriteLine("Devices:");
			foreach (var device in devices)
			{
				Console.WriteLine($"    - {device.Serial}: {device.Name}");
			}
		}
	}
}

API Documentation

The Meraki API documentation can be found here:

Testing

You can test this using a Meraki Sandbox here:

After signing in, look in the lower left hand side of the page for your API key.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.56.170 0 6/4/2025
1.56.166 42 6/2/2025
1.56.165 128 5/29/2025
1.56.164 136 5/27/2025
1.56.162 66 5/24/2025
1.56.21 132 5/4/2025
1.56.20 108 5/4/2025
1.56.19 156 4/25/2025
1.56.18 164 4/24/2025
1.56.17 171 4/24/2025
1.56.13 142 4/24/2025
1.56.11 144 4/24/2025
1.56.6 138 4/23/2025
1.56.4 139 4/23/2025
1.55.13 626 3/25/2025
1.55.12 487 3/25/2025
1.55.11 185 3/19/2025
1.55.5 171 3/12/2025
1.54.34 245 3/10/2025
1.54.24 232 3/6/2025
1.54.23 221 3/6/2025
1.54.22 229 3/4/2025
1.54.20 173 2/21/2025
1.54.17 108 2/21/2025
1.54.16 120 2/21/2025
1.54.12 114 2/20/2025
1.54.9 198 2/4/2025
1.54.7 115 2/3/2025
1.54.5 133 1/29/2025
1.54.1 102 1/28/2025
1.53.19 161 1/21/2025
1.53.17 100 1/21/2025
1.53.13 116 1/15/2025
1.53.12 99 1/15/2025
1.53.11 85 1/14/2025
1.51.52 113 1/13/2025
1.51.51 87 1/13/2025
1.51.50 171 1/8/2025
1.51.48 331 11/21/2024
1.51.47 123 11/21/2024
1.51.46 120 11/21/2024
1.51.45 112 11/21/2024
1.51.43 121 11/18/2024
1.51.20 149 11/13/2024
1.51.18 306 11/5/2024
1.51.17 206 10/29/2024
1.51.15 397 10/24/2024
1.51.12 151 10/22/2024
1.51.7 118 10/22/2024
1.51.6 102 10/21/2024
1.51.5 112 10/21/2024
1.50.4 368 10/3/2024
1.50.3 131 10/3/2024
1.50.1 128 10/3/2024
1.49.14 312 9/18/2024
1.49.11 194 9/10/2024
1.49.9 201 8/30/2024
1.49.7 188 8/22/2024
1.49.6 149 8/21/2024
1.49.5 170 8/19/2024
1.49.4 146 8/19/2024
1.49.1 175 8/15/2024
1.48.9 197 8/12/2024
1.48.8 158 8/7/2024
1.46.13 157 7/5/2024
1.46.12 166 7/3/2024
1.46.11 129 7/3/2024
1.46.10 146 7/2/2024
1.46.9 140 6/24/2024
1.46.6 123 6/24/2024
1.46.2 237 5/20/2024
1.46.1 143 5/17/2024
1.45.27 320 4/24/2024
1.45.26 141 4/23/2024
1.43.46 178 4/17/2024
1.43.44 196 4/2/2024
1.43.43 149 4/2/2024
1.43.40 145 3/27/2024
1.43.34 201 3/17/2024
1.43.33 146 3/5/2024
1.43.32 155 3/1/2024
1.43.30 159 2/26/2024
1.42.5 174 2/21/2024
1.41.22 801 2/9/2024
1.41.18 131 2/5/2024
1.41.16 158 1/30/2024
1.41.14 139 1/30/2024
1.41.8 152 1/29/2024
1.40.15 558 12/12/2023
1.40.14 157 12/12/2023
1.39.1 178 12/11/2023
1.38.30 248 11/30/2023
1.38.27 205 11/15/2023
1.38.24 154 11/13/2023
1.38.23 153 11/10/2023
1.38.20 155 11/7/2023
1.38.18 167 11/1/2023
1.38.16 197 10/24/2023
1.38.15 168 10/24/2023
1.38.13 167 10/24/2023
1.38.12 256 10/19/2023
1.38.11 141 10/19/2023
1.38.10 153 10/19/2023
1.38.7 157 10/16/2023
1.38.2 191 10/8/2023
1.38.1 181 10/7/2023
1.37.22 181 10/5/2023
1.37.19 161 10/5/2023
1.37.17 162 10/4/2023
1.37.16 165 10/4/2023
1.37.15 163 10/4/2023
1.37.14 163 10/4/2023
1.37.13 156 10/4/2023
1.37.12 177 10/3/2023
1.37.9 145 10/3/2023
1.37.8 183 9/29/2023
1.37.7 157 9/25/2023
1.37.1 169 9/21/2023
1.36.65 143 9/21/2023
1.36.53 243 9/10/2023
1.36.30 213 9/5/2023
1.36.24 194 8/31/2023
1.36.20 219 8/28/2023
1.36.19 185 8/25/2023
1.36.17 200 8/25/2023
1.36.16 260 8/17/2023
1.36.15 190 8/17/2023
1.36.14 184 8/17/2023
1.36.13 156 8/17/2023
1.36.12 203 8/16/2023
1.36.10 186 8/14/2023
1.36.9 156 8/14/2023
1.36.8 170 8/10/2023
1.36.7 167 8/8/2023
1.36.5 214 8/7/2023
1.36.3 175 8/7/2023
1.36.2 182 8/7/2023
1.34.75 172 8/3/2023
1.34.65 301 7/14/2023
1.34.64 197 7/14/2023
1.34.63 229 7/10/2023
1.34.62 198 7/10/2023
1.34.60 182 7/9/2023
1.34.56 190 7/9/2023
1.34.53 194 7/6/2023
1.34.51 189 7/6/2023
1.34.49 179 7/6/2023
1.34.39 183 7/6/2023
1.34.35 197 7/6/2023
1.34.33 247 7/3/2023
1.34.29 183 7/3/2023
1.34.28 182 7/3/2023
1.34.26 316 7/3/2023
1.34.25 180 7/3/2023
1.34.22 198 7/2/2023
1.34.20 209 7/2/2023
1.34.19 202 6/30/2023
1.34.18 164 6/30/2023
1.34.7 181 6/30/2023
1.34.5 205 6/30/2023
1.34.1 182 6/30/2023
1.33.22 223 6/28/2023
1.33.20 188 6/26/2023
1.33.18 322 6/19/2023
1.33.17 269 6/13/2023
1.33.15 198 6/13/2023
1.33.8 411 5/23/2023
1.33.6 201 5/22/2023
1.33.3 212 5/22/2023
1.32.11 238 5/16/2023
1.32.9 239 5/11/2023
1.32.7 218 5/10/2023
1.32.6 216 5/10/2023
1.32.4 266 4/28/2023
1.32.3 255 4/25/2023
1.32.2 234 4/25/2023
1.31.51 239 4/22/2023
1.31.48 267 4/21/2023
1.31.47 240 4/21/2023
1.31.46 271 4/17/2023
1.31.45 245 4/17/2023
1.31.41 258 4/11/2023
1.31.40 279 4/11/2023
1.31.34 273 4/11/2023
1.31.31 277 4/4/2023
1.31.24 275 4/3/2023
1.31.23 279 4/1/2023
1.31.19 307 3/28/2023
1.31.16 277 3/28/2023
1.31.14 284 3/27/2023
1.31.13 291 3/27/2023
1.30.26 548 3/22/2023
1.30.23 399 3/15/2023
1.30.20 298 3/15/2023
1.30.18 354 2/28/2023
1.30.15 298 2/27/2023
1.30.11 491 2/24/2023
1.30.9 357 2/22/2023
1.30.7 329 2/20/2023
1.30.5 341 2/20/2023
1.30.3 333 2/7/2023
1.29.15 338 1/31/2023
1.29.13 348 1/31/2023
1.29.12 343 1/27/2023
1.29.11 356 1/25/2023
1.29.8 386 1/17/2023
1.29.6 352 1/17/2023
1.29.4 370 1/16/2023
1.29.1 358 1/13/2023
1.28.6 370 1/10/2023
1.28.4 411 1/6/2023
1.28.1 378 12/13/2022
1.27.31 358 12/9/2022
1.27.30 337 12/9/2022
1.27.28 389 12/5/2022
1.27.25 393 11/30/2022
1.27.21 373 11/30/2022
1.27.17 421 11/22/2022
1.27.15 392 11/18/2022
1.27.6 414 11/16/2022
1.26.27 482 11/10/2022
1.26.24 435 11/7/2022
1.26.22 439 11/2/2022
1.26.8 429 10/30/2022
1.26.7 444 10/26/2022
1.26.5 487 10/17/2022
1.26.1 465 10/14/2022
1.25.13 473 10/10/2022
1.25.11 454 10/10/2022
1.25.10 454 10/10/2022
1.25.9 458 10/4/2022
1.25.7 502 9/16/2022
1.25.4 500 9/16/2022
1.25.3 511 9/15/2022
1.25.2 486 9/12/2022
1.24.23 486 9/5/2022
1.24.20 490 8/26/2022
1.24.12 524 8/12/2022
1.24.9 514 8/11/2022
1.24.8 508 8/11/2022
1.24.7 494 8/11/2022
1.24.6 487 8/11/2022
1.24.5 523 8/11/2022
1.24.3 523 8/11/2022
1.23.9 521 7/26/2022
1.23.5 634 7/19/2022
1.22.23 522 7/15/2022
1.22.19 584 7/7/2022
1.22.9 582 6/30/2022
1.22.5 571 6/14/2022
1.22.4 535 6/14/2022
1.22.3 542 6/14/2022
1.20.42 606 5/23/2022
1.20.18 626 4/20/2022
1.20.14 538 4/9/2022
1.20.10 526 4/7/2022
1.20.8 534 4/7/2022
1.19.79 545 4/3/2022
1.19.78 557 4/1/2022
1.19.60 548 3/27/2022
1.19.53 530 3/19/2022
1.19.52 528 3/19/2022
1.19.51 516 3/19/2022
1.19.50 527 3/19/2022
1.19.48 521 3/19/2022
1.19.45 559 3/15/2022
1.19.44 528 3/15/2022
1.19.43 562 3/14/2022
1.19.42 592 3/11/2022
1.19.38 567 3/9/2022
1.19.36 531 3/9/2022
1.19.35 548 3/9/2022
1.19.34 536 3/8/2022
1.19.32 547 3/7/2022
1.19.30 548 3/7/2022
1.19.26 531 3/7/2022
1.19.25 526 3/7/2022
1.19.21 550 3/7/2022
1.19.20 562 3/7/2022
1.19.17 532 3/6/2022
1.19.16 540 3/4/2022
1.19.11 531 3/4/2022
1.19.7 534 3/3/2022
1.19.1 510 3/3/2022
1.18.62 537 3/2/2022
1.18.61 558 3/1/2022
1.18.57 518 2/25/2022
1.18.56 558 2/24/2022
1.18.52 541 2/22/2022
1.18.32 569 2/11/2022
1.18.23 539 2/11/2022
1.18.22 578 2/8/2022
1.18.2 559 2/6/2022
1.17.57 561 2/2/2022
1.17.52 595 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 583 1/28/2022
1.17.38 554 1/28/2022
1.17.3 408 1/9/2022
1.16.2 400 12/7/2021
1.16.1 394 12/2/2021
1.15.95 459 11/18/2021
1.15.88 427 11/17/2021
1.15.86 396 11/17/2021
1.15.77 434 11/16/2021
1.15.76 414 11/16/2021
1.14.28 449 11/8/2021
1.14.9 381 12/7/2021
1.14.8 393 12/7/2021
1.14.6 485 10/26/2021
1.14.1 437 10/26/2021
1.11.14 1,564 8/24/2021
1.11.4 445 8/19/2021
1.11.3-gd5620b5868 296 8/19/2021
1.0.94 1,443 8/4/2021
1.0.93 481 8/2/2021
1.0.89 486 7/28/2021
1.0.88 655 7/22/2021
1.0.87 422 7/15/2021
1.0.85 695 2/9/2021
1.0.83 558 11/18/2020
1.0.82 518 11/18/2020
1.0.80 556 10/21/2020
1.0.79 583 10/20/2020
1.0.75 512 10/15/2020
1.0.74 573 10/6/2020
1.0.73 678 9/17/2020
1.0.72 651 8/13/2020
1.0.71 573 8/12/2020
1.0.70 587 8/11/2020
1.0.69 595 6/14/2020
1.0.68 644 6/14/2020
1.0.67 664 5/20/2020
1.0.66 580 5/20/2020
1.0.65 606 5/20/2020
1.0.63 614 5/19/2020
1.0.62 635 5/18/2020
1.0.61 562 5/18/2020
1.0.59 597 5/18/2020
1.0.58 595 5/15/2020
1.0.57 612 5/15/2020
1.0.56 592 5/14/2020
1.0.55 596 5/7/2020
1.0.52 626 4/9/2020
1.0.40 638 3/27/2020
1.0.39 644 3/26/2020
1.0.38 590 3/26/2020
1.0.35 682 3/13/2020
1.0.33 656 3/13/2020
1.0.32 668 3/13/2020
1.0.27 616 3/5/2020
1.0.26 652 3/5/2020
1.0.18 626 12/9/2019
1.0.15 620 10/21/2019
1.0.13 600 10/21/2019
1.0.10 628 10/17/2019
1.0.9 637 10/16/2019
1.0.8 660 10/16/2019
1.0.7 651 10/16/2019
1.0.6 641 10/16/2019
1.0.5 649 10/12/2019
1.0.4 622 10/12/2019
1.0.3 627 10/8/2019
1.0.1 661 10/7/2019
0.1.20-alpha 451 10/7/2019
0.1.19-alpha 443 10/7/2019
0.1.18-alpha 423 10/4/2019
0.1.16-alpha 451 10/1/2019
0.1.14-alpha 414 9/30/2019
0.1.13-alpha 453 9/29/2019
0.1.12-alpha 457 9/29/2019
0.1.11-alpha 438 9/29/2019
0.1.10-alpha 449 9/28/2019
0.1.9-alpha 445 9/28/2019
0.1.7-alpha 452 9/16/2019
0.1.6-alpha 431 9/16/2019
0.1.5-alpha 455 9/15/2019
0.1.3-alpha 408 9/12/2019
0.1.2-alpha 460 9/12/2019