CEPAberto 4.0.712

There is a newer version of this package available.
See the version list below for details.
dotnet add package CEPAberto --version 4.0.712                
NuGet\Install-Package CEPAberto -Version 4.0.712                
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="CEPAberto" Version="4.0.712" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CEPAberto --version 4.0.712                
#r "nuget: CEPAberto, 4.0.712"                
#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.
// Install CEPAberto as a Cake Addin
#addin nuget:?package=CEPAberto&version=4.0.712

// Install CEPAberto as a Cake Tool
#tool nuget:?package=CEPAberto&version=4.0.712                

CEP Aberto SDK .NET

CEP Aberto API wrapper written in C# (.NET).

Implements all V3 features

GitHub license time tracker

CEPAberto

CI/CD

Build status Last commit Tests Coverage Code Smells LOC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities


Installation

Github Releases

GitHub last release Github All Releases

Download the latest zip file from the Release page.

Nuget package manager

Package Version Downloads
CEPAberto CEPAberto NuGet Version CEPAberto NuGet Downloads

Features

This client supports the following operations/features of the API V3:

  1. Get data based on postal code (CEP).
  2. Get data of a nearest geo location (lat/lon) (Max of 10km).
  3. Get data based on state initials (UF), city, neighborhood and street/address.
  4. Get list of cities of a state based on state initials.
  5. Update the postal code (CEP).

Setup the CEPAbertoClient

Initializes a new instance of CEPAbertoClient class. The API token can be found at http://www.cepaberto.com/api_key (A free registration is required!)


var client = new CEPAbertoClient("my API token");
//var postalData = client.GetData("00000000");
//var cities = client.GetCities("SP");

Get data based on postal code (CEP)

Searches for a postal code data based on postal code


var client = new CEPAbertoClient("my API key");
var postalCode = "40010000";
var result = client.GetData(postalCode);

if(result.Success)
{
   Console.WriteLine("Postal data for the zip code {0} found!", postalCode);
   Console.WriteLine("Lat: {0} | Lon: {1}", result.Latitude, result.Longitude);
}
else
   Console.WriteLine("No data for the zip code {0} available", postalCode);

Get data of a nearest geo location (lat/lon) (Max of 10km)

Searches for the first postal code closest to the requested coordinates, limited to 10km (API limit, not library)


var client = new CEPAbertoClient("my API key");
var result = client.GetData("-20.55", "-43.63");

if(result.Success)
   Console.WriteLine("Postal code found: {0}", result.PostalCode);
else
   Console.WriteLine("Unable to find a postal data for the coordinates supplied!");

Get data based on state initials (UF), city, neighborhood and street/address

Searches for a postal code data for the address supplied. Neighborhood and Street/Address are optional!


var client = new CEPAbertoClient("my API key");
var result = client.GetData("SP","Ubatuba");

if(result.Success)
    Console.WriteLine("Postal code found: {0}", result.PostalCode);
else
    Console.WriteLine("Cannot find postal code for Ubatuba/SP");

Get list of cities of a state based on state initials

Get a list of cities for a given state (use state initials aka UF)


var client = new CEPAbertoClient("my API key");
var result = client.GetCities("AM");

if(result.Success)
    foreach(var city in result.Cities)
        Console.WriteLine("Found city {0} in Amazonas (AM)", city.Name);

Update the postal code (CEP)

Request an update on postal codes that may be outdated or not registered. Accepts upon 100 postal codes (CEP)


var client = new CEPAbertoClient("my API key");
var result = client.Update("03177010");

if(result.Success)
    Console.WriteLine("Success on request update on postal code 03177-010");

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.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 is compatible. 
.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
4.0.740 122 13 days ago
4.0.737 126 13 days ago
4.0.732 113 20 days ago
4.0.729 88 20 days ago
4.0.726 90 23 days ago
4.0.720 82 23 days ago
4.0.712 83 23 days ago
4.0.707 94 a month ago
4.0.704 91 a month ago
4.0.699 80 a month ago
4.0.692 92 a month ago
4.0.689 78 a month ago
4.0.686 76 2 months ago
4.0.683 80 2 months ago
4.0.678 81 2 months ago
4.0.675 82 2 months ago
4.0.670 84 2 months ago
4.0.667 66 2 months ago
4.0.662 64 2 months ago
4.0.657 70 2 months ago
4.0.654 96 2 months ago
4.0.651 90 2 months ago
4.0.646 93 2 months ago
4.0.639 86 3 months ago
4.0.636 83 3 months ago
4.0.633 84 3 months ago
4.0.628 100 3 months ago
4.0.625 89 3 months ago
4.0.620 95 3 months ago
4.0.617 88 3 months ago
4.0.612 88 3 months ago
4.0.609 96 4 months ago
4.0.606 76 4 months ago
4.0.601 83 4 months ago
4.0.594 92 4 months ago
4.0.591 99 4 months ago
4.0.588 95 4 months ago
4.0.585 108 5 months ago
4.0.582 98 5 months ago
4.0.577 93 5 months ago
4.0.574 102 5 months ago
4.0.569 219 5 months ago
4.0.566 99 5 months ago
4.0.563 94 5 months ago
4.0.560 93 5 months ago
4.0.557 99 5 months ago
4.0.550 416 6 months ago
4.0.547 89 6 months ago
4.0.542 141 6 months ago
4.0.539 111 6 months ago
4.0.534 115 6 months ago
4.0.531 108 6 months ago
4.0.526 109 6 months ago
4.0.519 92 6 months ago
4.0.510 110 6 months ago
4.0.499 149 6 months ago
4.0.496 104 6 months ago
4.0.491 106 7 months ago
4.0.486 107 7 months ago
4.0.481 102 7 months ago
4.0.476 107 7 months ago
4.0.471 109 7 months ago
4.0.464 138 7 months ago
4.0.453 141 7 months ago
4.0.449 164 7 months ago
4.0.446 92 7 months ago
4.0.443 89 8 months ago
4.0.440 125 8 months ago
4.0.437 104 8 months ago
4.0.434 101 8 months ago
4.0.431 108 8 months ago
4.0.426 103 8 months ago
4.0.419 103 8 months ago
4.0.412 111 8 months ago
4.0.382 112 9 months ago
4.0.375 117 9 months ago
4.0.372 107 10 months ago
4.0.369 103 10 months ago
4.0.364 95 10 months ago
4.0.357 116 10 months ago
4.0.348 97 10 months ago
4.0.345 94 10 months ago
4.0.340 119 5/13/2024
4.0.337 135 5/6/2024
4.0.334 129 5/6/2024
4.0.331 124 4/30/2024
4.0.328 128 4/30/2024
4.0.323 136 4/30/2024
4.0.316 127 4/30/2024
4.0.313 106 4/29/2024
4.0.302 122 4/22/2024
4.0.299 120 4/22/2024
4.0.294 117 4/22/2024
4.0.291 104 4/22/2024
4.0.282 125 4/16/2024
4.0.279 114 4/16/2024
4.0.274 114 4/16/2024
4.0.267 122 4/16/2024
4.0.250 126 4/8/2024
4.0.247 97 4/8/2024
4.0.242 128 4/8/2024
4.0.235 117 3/25/2024
4.0.232 115 3/25/2024
4.0.227 124 3/25/2024
4.0.220 124 3/21/2024
4.0.210 135 2/26/2024
4.0.207 126 2/26/2024
4.0.202 119 2/26/2024
4.0.193 127 2/19/2024
4.0.186 129 2/19/2024
4.0.177 120 2/19/2024
4.0.160 126 2/14/2024
4.0.154 116 2/12/2024
4.0.151 108 2/12/2024
4.0.148 116 2/6/2024
4.0.145 116 2/5/2024
4.0.140 120 1/30/2024
4.0.135 107 1/29/2024
4.0.132 112 1/29/2024
4.0.127 108 1/29/2024
4.0.120 115 1/29/2024
4.0.112 134 1/22/2024
4.0.107 118 1/22/2024
4.0.104 121 1/22/2024
4.0.99 119 1/22/2024
4.0.90 134 1/16/2024
4.0.82 134 1/15/2024
4.0.77 126 1/15/2024
4.0.70 137 1/8/2024
4.0.67 128 1/8/2024
4.0.62 172 12/25/2023
4.0.59 136 12/25/2023
4.0.54 143 12/25/2023
4.0.47 129 12/25/2023
4.0.38 154 12/18/2023
4.0.35 130 12/18/2023
4.0.32 136 12/18/2023
4.0.25 121 12/18/2023
4.0.3 147 12/17/2023
3.0.467 143 12/14/2023
3.0.461 153 12/12/2023
3.0.458 158 12/11/2023
3.0.455 149 12/11/2023
3.0.452 170 12/11/2023
3.0.445 174 12/5/2023
3.0.440 155 12/5/2023
3.0.435 151 11/28/2023
3.0.432 145 11/28/2023
3.0.427 291 11/23/2023
3.0.424 151 11/21/2023
3.0.417 713 11/14/2023
3.0.411 128 11/14/2023
3.0.408 151 11/14/2023
3.0.400 172 11/10/2023
3.0.391 160 11/7/2023
3.0.388 153 11/7/2023
3.0.385 183 10/24/2023
3.0.382 160 10/17/2023
3.0.378 192 9/25/2023
3.0.373 171 9/24/2023
3.0.370 167 9/24/2023
3.0.365 168 9/24/2023
3.0.356 181 9/17/2023
3.0.353 167 9/17/2023
3.0.348 204 9/13/2023
3.0.338 195 9/13/2023
3.0.335 186 9/13/2023
3.0.332 186 9/13/2023
3.0.322 352 8/28/2023
3.0.314 372 8/13/2023
3.0.311 184 8/13/2023
3.0.308 204 8/13/2023
3.0.301 207 8/13/2023
3.0.291 283 8/3/2023
3.0.288 224 8/2/2023
3.0.283 249 7/28/2023
3.0.280 217 7/25/2023
3.0.277 206 7/25/2023
3.0.269 272 7/19/2023
3.0.266 187 7/19/2023
3.0.212 369 6/27/2023
3.0.209 252 6/26/2023
3.0.202 276 6/19/2023
3.0.193 203 6/18/2023
3.0.188 223 6/18/2023
3.0.183 202 6/18/2023
3.0.166 381 6/7/2023
3.0.156 374 5/31/2023
3.0.150 190 5/31/2023
3.0.147 209 5/31/2023
3.0.117 193 5/25/2023
3.0.114 463 5/4/2023
3.0.113 219 5/2/2023
3.0.109 230 4/28/2023
3.0.102 405 4/10/2023
3.0.97 242 4/9/2023
3.0.89 256 4/4/2023
3.0.84 375 4/3/2023
3.0.75 401 3/27/2023
3.0.72 335 3/25/2023
3.0.65 272 3/25/2023
3.0.56 259 3/25/2023
2.0.39 639 1/24/2023
2.0.38 712 1/9/2023
2.0.33 357 1/9/2023
2.0.32 353 1/9/2023
2.0.31 347 1/9/2023
2.0.26 384 12/14/2022
2.0.25 374 12/8/2022
2.0.24 366 12/8/2022
2.0.21 374 12/8/2022
2.0.12 1,258 11/1/2020
2.0.11 557 10/1/2020
2.0.10 627 9/1/2020
2.0.9 567 8/1/2020
2.0.8 710 7/1/2020
2.0.7 569 6/29/2020
1.0.58 675 6/1/2020
1.0.57 634 5/2/2020
1.0.56 625 5/2/2020
1.0.54 647 5/2/2020
1.0.52 589 5/2/2020
1.0.51 618 5/2/2020
1.0.50 631 5/2/2020
1.0.49 678 5/2/2020
1.0.48 613 5/2/2020
1.0.47 623 5/2/2020
1.0.46 633 5/1/2020
1.0.45 643 5/1/2020
1.0.44 621 5/1/2020
1.0.43 640 5/1/2020
1.0.42 607 5/1/2020
1.0.41 621 5/1/2020
1.0.40 646 5/1/2020
1.0.39 632 5/1/2020
1.0.38 631 5/1/2020
1.0.37 676 5/1/2020
1.0.36 609 5/1/2020
1.0.35 616 5/1/2020
1.0.34 618 5/1/2020
1.0.33 622 5/1/2020
1.0.32 587 5/1/2020
1.0.31 610 5/1/2020
1.0.30 589 5/1/2020
1.0.29 613 5/1/2020
1.0.28 604 5/1/2020
1.0.27 644 5/1/2020
1.0.26 669 5/1/2020
1.0.25 715 5/1/2020
1.0.24 644 5/1/2020
1.0.22 670 5/1/2020
1.0.21 605 4/24/2020
1.0.20 626 4/24/2020
1.0.19 604 4/24/2020
1.0.12 1,018 9/19/2018
1.0.9 997 8/16/2018
1.0.8 992 8/16/2018