CEPAberto 3.0.65

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

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

CEP Aberto

CEP Aberto API wrapper written in C# (.NET). Implements all V3 features Fully tested!

GitHub license

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

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 Framework net48 is compatible.  net481 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.331 42 4/30/2024
4.0.328 44 4/30/2024
4.0.323 43 4/30/2024
4.0.316 43 4/30/2024
4.0.313 61 4/29/2024
4.0.302 74 4/22/2024
4.0.299 75 4/22/2024
4.0.294 75 4/22/2024
4.0.291 74 4/22/2024
4.0.282 81 4/16/2024
4.0.279 76 4/16/2024
4.0.274 72 4/16/2024
4.0.267 83 4/16/2024
4.0.250 88 4/8/2024
4.0.247 74 4/8/2024
4.0.242 71 4/8/2024
4.0.235 80 3/25/2024
4.0.232 76 3/25/2024
4.0.227 81 3/25/2024
4.0.220 86 3/21/2024
4.0.210 91 2/26/2024
4.0.207 82 2/26/2024
4.0.202 77 2/26/2024
4.0.193 79 2/19/2024
4.0.186 80 2/19/2024
4.0.177 73 2/19/2024
4.0.160 79 2/14/2024
4.0.154 73 2/12/2024
4.0.151 65 2/12/2024
4.0.148 72 2/6/2024
4.0.145 75 2/5/2024
4.0.140 83 1/30/2024
4.0.135 70 1/29/2024
4.0.132 69 1/29/2024
4.0.127 71 1/29/2024
4.0.120 72 1/29/2024
4.0.112 87 1/22/2024
4.0.107 77 1/22/2024
4.0.104 65 1/22/2024
4.0.99 80 1/22/2024
4.0.90 79 1/16/2024
4.0.82 76 1/15/2024
4.0.77 82 1/15/2024
4.0.70 93 1/8/2024
4.0.67 87 1/8/2024
4.0.62 127 12/25/2023
4.0.59 97 12/25/2023
4.0.54 101 12/25/2023
4.0.47 91 12/25/2023
4.0.38 112 12/18/2023
4.0.35 97 12/18/2023
4.0.32 100 12/18/2023
4.0.25 86 12/18/2023
4.0.3 113 12/17/2023
3.0.467 105 12/14/2023
3.0.461 110 12/12/2023
3.0.458 122 12/11/2023
3.0.455 106 12/11/2023
3.0.452 116 12/11/2023
3.0.445 140 12/5/2023
3.0.440 121 12/5/2023
3.0.435 127 11/28/2023
3.0.432 110 11/28/2023
3.0.427 180 11/23/2023
3.0.424 113 11/21/2023
3.0.417 184 11/14/2023
3.0.411 95 11/14/2023
3.0.408 115 11/14/2023
3.0.400 136 11/10/2023
3.0.391 119 11/7/2023
3.0.388 118 11/7/2023
3.0.385 146 10/24/2023
3.0.382 126 10/17/2023
3.0.378 153 9/25/2023
3.0.373 134 9/24/2023
3.0.370 128 9/24/2023
3.0.365 132 9/24/2023
3.0.356 148 9/17/2023
3.0.353 131 9/17/2023
3.0.348 167 9/13/2023
3.0.338 160 9/13/2023
3.0.335 148 9/13/2023
3.0.332 150 9/13/2023
3.0.322 317 8/28/2023
3.0.314 340 8/13/2023
3.0.311 147 8/13/2023
3.0.308 166 8/13/2023
3.0.301 172 8/13/2023
3.0.291 247 8/3/2023
3.0.288 187 8/2/2023
3.0.283 214 7/28/2023
3.0.280 179 7/25/2023
3.0.277 170 7/25/2023
3.0.269 233 7/19/2023
3.0.266 151 7/19/2023
3.0.212 330 6/27/2023
3.0.209 216 6/26/2023
3.0.202 235 6/19/2023
3.0.193 169 6/18/2023
3.0.188 177 6/18/2023
3.0.183 167 6/18/2023
3.0.166 339 6/7/2023
3.0.156 336 5/31/2023
3.0.150 155 5/31/2023
3.0.147 171 5/31/2023
3.0.117 156 5/25/2023
3.0.114 425 5/4/2023
3.0.113 177 5/2/2023
3.0.109 190 4/28/2023
3.0.102 368 4/10/2023
3.0.97 199 4/9/2023
3.0.89 214 4/4/2023
3.0.84 337 4/3/2023
3.0.75 362 3/27/2023
3.0.72 283 3/25/2023
3.0.65 231 3/25/2023
3.0.56 233 3/25/2023
2.0.39 599 1/24/2023
2.0.38 675 1/9/2023
2.0.33 319 1/9/2023
2.0.32 314 1/9/2023
2.0.31 306 1/9/2023
2.0.26 340 12/14/2022
2.0.25 328 12/8/2022
2.0.24 327 12/8/2022
2.0.21 335 12/8/2022
2.0.12 1,201 11/1/2020
2.0.11 506 10/1/2020
2.0.10 578 9/1/2020
2.0.9 520 8/1/2020
2.0.8 674 7/1/2020
2.0.7 499 6/29/2020
1.0.58 624 6/1/2020
1.0.57 582 5/2/2020
1.0.56 575 5/2/2020
1.0.54 596 5/2/2020
1.0.52 540 5/2/2020
1.0.51 567 5/2/2020
1.0.50 583 5/2/2020
1.0.49 630 5/2/2020
1.0.48 564 5/2/2020
1.0.47 568 5/2/2020
1.0.46 584 5/1/2020
1.0.45 587 5/1/2020
1.0.44 571 5/1/2020
1.0.43 590 5/1/2020
1.0.42 558 5/1/2020
1.0.41 568 5/1/2020
1.0.40 594 5/1/2020
1.0.39 574 5/1/2020
1.0.38 582 5/1/2020
1.0.37 629 5/1/2020
1.0.36 554 5/1/2020
1.0.35 569 5/1/2020
1.0.34 568 5/1/2020
1.0.33 574 5/1/2020
1.0.32 539 5/1/2020
1.0.31 557 5/1/2020
1.0.30 538 5/1/2020
1.0.29 562 5/1/2020
1.0.28 553 5/1/2020
1.0.27 582 5/1/2020
1.0.26 613 5/1/2020
1.0.25 664 5/1/2020
1.0.24 593 5/1/2020
1.0.22 621 5/1/2020
1.0.21 548 4/24/2020
1.0.20 576 4/24/2020
1.0.19 553 4/24/2020
1.0.12 942 9/19/2018
1.0.9 927 8/16/2018
1.0.8 920 8/16/2018