Meraki.Api 1.54.23

There is a newer version of this package available.
See the version list below for details.
dotnet add package Meraki.Api --version 1.54.23
                    
NuGet\Install-Package Meraki.Api -Version 1.54.23
                    
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.54.23" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meraki.Api" Version="1.54.23" />
                    
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.54.23
                    
#r "nuget: Meraki.Api, 1.54.23"
                    
#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.
#:package Meraki.Api@1.54.23
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Meraki.Api&version=1.54.23
                    
Install as a Cake Addin
#tool nuget:?package=Meraki.Api&version=1.54.23
                    
Install 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",
				// UserAgent = "YourProductName/YourProductVersion YourCompanyName"
				// UserAgent = "YourProductName YourCompanyName"
				UserAgent = "DeviceLister/1.0 MyCompanyInc"
			});

			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.57.6 0 9/1/2025
1.57.4 0 9/1/2025
1.57.2 0 9/1/2025
1.56.454 179 8/27/2025
1.56.452 460 7/25/2025
1.56.449 455 7/24/2025
1.56.447 578 7/23/2025
1.56.446 495 7/23/2025
1.56.445 459 7/21/2025
1.56.444 444 7/21/2025
1.56.443 131 7/17/2025
1.56.438 230 7/14/2025
1.56.436 117 7/11/2025
1.56.433 175 7/8/2025
1.56.195 171 7/4/2025
1.56.193 166 7/3/2025
1.56.191 159 6/27/2025
1.56.190 164 6/26/2025
1.56.187 135 6/20/2025
1.56.181 126 6/20/2025
1.56.170 230 6/4/2025
1.56.166 187 6/2/2025
1.56.165 179 5/29/2025
1.56.164 173 5/27/2025
1.56.162 101 5/24/2025
1.56.21 159 5/4/2025
1.56.20 135 5/4/2025
1.56.19 190 4/25/2025
1.56.18 193 4/24/2025
1.56.17 202 4/24/2025
1.56.13 171 4/24/2025
1.56.11 174 4/24/2025
1.56.6 169 4/23/2025
1.56.4 169 4/23/2025
1.55.13 662 3/25/2025
1.55.12 516 3/25/2025
1.55.11 214 3/19/2025
1.55.5 198 3/12/2025
1.54.34 275 3/10/2025
1.54.24 262 3/6/2025
1.54.23 247 3/6/2025
1.54.22 258 3/4/2025
1.54.20 202 2/21/2025
1.54.17 136 2/21/2025
1.54.16 151 2/21/2025
1.54.12 142 2/20/2025
1.54.9 226 2/4/2025
1.54.7 146 2/3/2025
1.54.5 185 1/29/2025
1.54.1 135 1/28/2025
1.53.19 194 1/21/2025
1.53.17 129 1/21/2025
1.53.13 146 1/15/2025
1.53.12 127 1/15/2025
1.53.11 115 1/14/2025
1.51.52 141 1/13/2025
1.51.51 116 1/13/2025
1.51.50 201 1/8/2025
1.51.48 361 11/21/2024
1.51.47 150 11/21/2024
1.51.46 151 11/21/2024
1.51.45 141 11/21/2024
1.51.43 147 11/18/2024
1.51.20 179 11/13/2024
1.51.18 338 11/5/2024
1.51.17 234 10/29/2024
1.51.15 424 10/24/2024
1.51.12 183 10/22/2024
1.51.7 150 10/22/2024
1.51.6 131 10/21/2024
1.51.5 140 10/21/2024
1.50.4 397 10/3/2024
1.50.3 161 10/3/2024
1.50.1 157 10/3/2024
1.49.14 342 9/18/2024
1.49.11 222 9/10/2024
1.49.9 229 8/30/2024
1.49.7 216 8/22/2024
1.49.6 178 8/21/2024
1.49.5 197 8/19/2024
1.49.4 173 8/19/2024
1.49.1 204 8/15/2024
1.48.9 225 8/12/2024
1.48.8 186 8/7/2024
1.46.13 185 7/5/2024
1.46.12 193 7/3/2024
1.46.11 159 7/3/2024
1.46.10 175 7/2/2024
1.46.9 168 6/24/2024
1.46.6 150 6/24/2024
1.46.2 263 5/20/2024
1.46.1 171 5/17/2024
1.45.27 352 4/24/2024
1.45.26 174 4/23/2024
1.43.46 210 4/17/2024
1.43.44 226 4/2/2024
1.43.43 179 4/2/2024
1.43.40 172 3/27/2024
1.43.34 229 3/17/2024
1.43.33 173 3/5/2024
1.43.32 187 3/1/2024
1.43.30 187 2/26/2024
1.42.5 199 2/21/2024
1.41.22 886 2/9/2024
1.41.18 157 2/5/2024
1.41.16 185 1/30/2024
1.41.14 168 1/30/2024
1.41.8 180 1/29/2024
1.40.15 585 12/12/2023
1.40.14 182 12/12/2023
1.39.1 206 12/11/2023
1.38.30 263 11/30/2023
1.38.27 222 11/15/2023
1.38.24 168 11/13/2023
1.38.23 167 11/10/2023
1.38.20 169 11/7/2023
1.38.18 184 11/1/2023
1.38.16 217 10/24/2023
1.38.15 186 10/24/2023
1.38.13 186 10/24/2023
1.38.12 277 10/19/2023
1.38.11 162 10/19/2023
1.38.10 172 10/19/2023
1.38.7 178 10/16/2023
1.38.2 210 10/8/2023
1.38.1 202 10/7/2023
1.37.22 202 10/5/2023
1.37.19 182 10/5/2023
1.37.17 185 10/4/2023
1.37.16 186 10/4/2023
1.37.15 186 10/4/2023
1.37.14 187 10/4/2023
1.37.13 179 10/4/2023
1.37.12 198 10/3/2023
1.37.9 166 10/3/2023
1.37.8 203 9/29/2023
1.37.7 189 9/25/2023
1.37.1 190 9/21/2023
1.36.65 164 9/21/2023
1.36.53 269 9/10/2023
1.36.30 239 9/5/2023
1.36.24 223 8/31/2023
1.36.20 247 8/28/2023
1.36.19 216 8/25/2023
1.36.17 228 8/25/2023
1.36.16 291 8/17/2023
1.36.15 219 8/17/2023
1.36.14 213 8/17/2023
1.36.13 186 8/17/2023
1.36.12 232 8/16/2023
1.36.10 216 8/14/2023
1.36.9 189 8/14/2023
1.36.8 201 8/10/2023
1.36.7 199 8/8/2023
1.36.5 247 8/7/2023
1.36.3 207 8/7/2023
1.36.2 214 8/7/2023
1.34.75 205 8/3/2023
1.34.65 334 7/14/2023
1.34.64 229 7/14/2023
1.34.63 261 7/10/2023
1.34.62 232 7/10/2023
1.34.60 214 7/9/2023
1.34.56 224 7/9/2023
1.34.53 224 7/6/2023
1.34.51 222 7/6/2023
1.34.49 213 7/6/2023
1.34.39 214 7/6/2023
1.34.35 230 7/6/2023
1.34.33 279 7/3/2023
1.34.29 214 7/3/2023
1.34.28 214 7/3/2023
1.34.26 349 7/3/2023
1.34.25 213 7/3/2023
1.34.22 230 7/2/2023
1.34.20 242 7/2/2023
1.34.19 235 6/30/2023
1.34.18 197 6/30/2023
1.34.7 213 6/30/2023
1.34.5 236 6/30/2023
1.34.1 214 6/30/2023
1.33.22 258 6/28/2023
1.33.20 221 6/26/2023
1.33.18 353 6/19/2023
1.33.17 303 6/13/2023
1.33.15 233 6/13/2023
1.33.8 445 5/23/2023
1.33.6 235 5/22/2023
1.33.3 245 5/22/2023
1.32.11 272 5/16/2023
1.32.9 272 5/11/2023
1.32.7 251 5/10/2023
1.32.6 249 5/10/2023
1.32.4 300 4/28/2023
1.32.3 289 4/25/2023
1.32.2 268 4/25/2023
1.31.51 272 4/22/2023
1.31.48 303 4/21/2023
1.31.47 277 4/21/2023
1.31.46 302 4/17/2023
1.31.45 275 4/17/2023
1.31.41 291 4/11/2023
1.31.40 311 4/11/2023
1.31.34 304 4/11/2023
1.31.31 309 4/4/2023
1.31.24 308 4/3/2023
1.31.23 312 4/1/2023
1.31.19 341 3/28/2023
1.31.16 310 3/28/2023
1.31.14 318 3/27/2023
1.31.13 324 3/27/2023
1.30.26 583 3/22/2023
1.30.23 431 3/15/2023
1.30.20 331 3/15/2023
1.30.18 389 2/28/2023
1.30.15 330 2/27/2023
1.30.11 523 2/24/2023
1.30.9 390 2/22/2023
1.30.7 361 2/20/2023
1.30.5 377 2/20/2023
1.30.3 367 2/7/2023
1.29.15 371 1/31/2023
1.29.13 381 1/31/2023
1.29.12 377 1/27/2023
1.29.11 390 1/25/2023
1.29.8 418 1/17/2023
1.29.6 386 1/17/2023
1.29.4 401 1/16/2023
1.29.1 391 1/13/2023
1.28.6 402 1/10/2023
1.28.4 444 1/6/2023
1.28.1 410 12/13/2022
1.27.31 391 12/9/2022
1.27.30 368 12/9/2022
1.27.28 422 12/5/2022
1.27.25 432 11/30/2022
1.27.21 406 11/30/2022
1.27.17 455 11/22/2022
1.27.15 424 11/18/2022
1.27.6 446 11/16/2022
1.26.27 514 11/10/2022
1.26.24 471 11/7/2022
1.26.22 473 11/2/2022
1.26.8 461 10/30/2022
1.26.7 478 10/26/2022
1.26.5 521 10/17/2022
1.26.1 498 10/14/2022
1.25.13 505 10/10/2022
1.25.11 488 10/10/2022
1.25.10 486 10/10/2022
1.25.9 492 10/4/2022
1.25.7 536 9/16/2022
1.25.4 534 9/16/2022
1.25.3 544 9/15/2022
1.25.2 521 9/12/2022
1.24.23 521 9/5/2022
1.24.20 523 8/26/2022
1.24.12 570 8/12/2022
1.24.9 548 8/11/2022
1.24.8 544 8/11/2022
1.24.7 530 8/11/2022
1.24.6 524 8/11/2022
1.24.5 560 8/11/2022
1.24.3 559 8/11/2022
1.23.9 555 7/26/2022
1.23.5 672 7/19/2022
1.22.23 558 7/15/2022
1.22.19 622 7/7/2022
1.22.9 617 6/30/2022
1.22.5 610 6/14/2022
1.22.4 573 6/14/2022
1.22.3 581 6/14/2022
1.20.42 644 5/23/2022
1.20.18 667 4/20/2022
1.20.14 578 4/9/2022
1.20.10 567 4/7/2022
1.20.8 572 4/7/2022
1.19.79 585 4/3/2022
1.19.78 597 4/1/2022
1.19.60 588 3/27/2022
1.19.53 569 3/19/2022
1.19.52 567 3/19/2022
1.19.51 556 3/19/2022
1.19.50 567 3/19/2022
1.19.48 562 3/19/2022
1.19.45 598 3/15/2022
1.19.44 568 3/15/2022
1.19.43 601 3/14/2022
1.19.42 634 3/11/2022
1.19.38 611 3/9/2022
1.19.36 574 3/9/2022
1.19.35 589 3/9/2022
1.19.34 575 3/8/2022
1.19.32 587 3/7/2022
1.19.30 586 3/7/2022
1.19.26 569 3/7/2022
1.19.25 564 3/7/2022
1.19.21 588 3/7/2022
1.19.20 601 3/7/2022
1.19.17 572 3/6/2022
1.19.16 579 3/4/2022
1.19.11 571 3/4/2022
1.19.7 574 3/3/2022
1.19.1 550 3/3/2022
1.18.62 577 3/2/2022
1.18.61 596 3/1/2022
1.18.57 559 2/25/2022
1.18.56 599 2/24/2022
1.18.52 581 2/22/2022
1.18.32 608 2/11/2022
1.18.23 579 2/11/2022
1.18.22 629 2/8/2022
1.18.2 598 2/6/2022
1.17.57 601 2/2/2022
1.17.52 670 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 624 1/28/2022
1.17.38 596 1/28/2022
1.17.3 448 1/9/2022
1.16.2 438 12/7/2021
1.16.1 439 12/2/2021
1.15.95 501 11/18/2021
1.15.88 468 11/17/2021
1.15.86 436 11/17/2021
1.15.77 475 11/16/2021
1.15.76 452 11/16/2021
1.14.28 493 11/8/2021
1.14.9 420 12/7/2021
1.14.8 431 12/7/2021
1.14.6 533 10/26/2021
1.14.1 475 10/26/2021
1.11.14 1,627 8/24/2021
1.11.4 485 8/19/2021
1.11.3-gd5620b5868 337 8/19/2021
1.0.94 1,511 8/4/2021
1.0.93 521 8/2/2021
1.0.89 527 7/28/2021
1.0.88 694 7/22/2021
1.0.87 459 7/15/2021
1.0.85 740 2/9/2021
1.0.83 604 11/18/2020
1.0.82 565 11/18/2020
1.0.80 609 10/21/2020
1.0.79 630 10/20/2020
1.0.75 557 10/15/2020
1.0.74 616 10/6/2020
1.0.73 724 9/17/2020
1.0.72 694 8/13/2020
1.0.71 620 8/12/2020
1.0.70 632 8/11/2020
1.0.69 643 6/14/2020
1.0.68 688 6/14/2020
1.0.67 711 5/20/2020
1.0.66 626 5/20/2020
1.0.65 649 5/20/2020
1.0.63 660 5/19/2020
1.0.62 681 5/18/2020
1.0.61 606 5/18/2020
1.0.59 640 5/18/2020
1.0.58 639 5/15/2020
1.0.57 656 5/15/2020
1.0.56 639 5/14/2020
1.0.55 639 5/7/2020
1.0.52 672 4/9/2020
1.0.40 682 3/27/2020
1.0.39 690 3/26/2020
1.0.38 635 3/26/2020
1.0.35 729 3/13/2020
1.0.33 702 3/13/2020
1.0.32 714 3/13/2020
1.0.27 665 3/5/2020
1.0.26 699 3/5/2020
1.0.18 673 12/9/2019
1.0.15 667 10/21/2019
1.0.13 646 10/21/2019
1.0.10 674 10/17/2019
1.0.9 682 10/16/2019
1.0.8 706 10/16/2019
1.0.7 700 10/16/2019
1.0.6 686 10/16/2019
1.0.5 694 10/12/2019
1.0.4 671 10/12/2019
1.0.3 675 10/8/2019
1.0.1 707 10/7/2019
0.1.20-alpha 499 10/7/2019
0.1.19-alpha 489 10/7/2019
0.1.18-alpha 474 10/4/2019
0.1.16-alpha 501 10/1/2019
0.1.14-alpha 462 9/30/2019
0.1.13-alpha 498 9/29/2019
0.1.12-alpha 504 9/29/2019
0.1.11-alpha 486 9/29/2019
0.1.10-alpha 494 9/28/2019
0.1.9-alpha 491 9/28/2019
0.1.7-alpha 498 9/16/2019
0.1.6-alpha 477 9/16/2019
0.1.5-alpha 499 9/15/2019
0.1.3-alpha 455 9/12/2019
0.1.2-alpha 508 9/12/2019