CEPAberto 3.0.435

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

CEP Aberto

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 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.761 141 5/19/2025
4.0.758 144 5/6/2025
4.0.749 158 4/21/2025
4.0.746 483 3/25/2025
4.0.743 153 3/17/2025
4.0.740 147 3/3/2025
4.0.737 150 3/3/2025
4.0.732 136 2/24/2025
4.0.729 111 2/24/2025
4.0.726 114 2/21/2025
4.0.720 103 2/21/2025
4.0.712 107 2/21/2025
4.0.707 117 2/17/2025
4.0.704 115 2/17/2025
4.0.699 102 2/17/2025
4.0.692 114 2/10/2025
4.0.689 99 2/3/2025
4.0.686 96 1/27/2025
4.0.683 100 1/27/2025
4.0.678 101 1/20/2025
4.0.675 102 1/20/2025
4.0.670 103 1/13/2025
4.0.667 86 1/13/2025
4.0.662 81 1/13/2025
4.0.657 87 1/13/2025
4.0.654 114 1/6/2025
4.0.651 108 1/6/2025
4.0.646 110 1/6/2025
4.0.639 106 12/31/2024
4.0.636 100 12/23/2024
4.0.633 101 12/23/2024
4.0.628 122 12/16/2024
4.0.625 111 12/16/2024
4.0.620 111 12/9/2024
4.0.617 106 12/9/2024
4.0.612 105 12/2/2024
4.0.609 112 11/25/2024
4.0.606 92 11/25/2024
4.0.601 102 11/25/2024
4.0.594 108 11/18/2024
4.0.591 118 11/11/2024
4.0.588 112 11/5/2024
4.0.585 124 10/28/2024
4.0.582 115 10/28/2024
4.0.577 110 10/21/2024
4.0.574 117 10/21/2024
4.0.569 235 10/14/2024
4.0.566 116 10/7/2024
4.0.563 112 10/3/2024
4.0.560 111 10/3/2024
4.0.557 114 10/3/2024
4.0.550 545 9/23/2024
4.0.547 104 9/23/2024
4.0.542 159 9/16/2024
4.0.539 128 9/16/2024
4.0.534 133 9/9/2024
4.0.531 123 9/9/2024
4.0.526 125 9/9/2024
4.0.519 108 9/9/2024
4.0.510 127 9/9/2024
4.0.499 166 9/2/2024
4.0.496 119 9/2/2024
4.0.491 123 8/27/2024
4.0.486 121 8/27/2024
4.0.481 116 8/27/2024
4.0.476 123 8/27/2024
4.0.471 124 8/27/2024
4.0.464 154 8/26/2024
4.0.453 156 8/24/2024
4.0.449 179 8/12/2024
4.0.446 107 8/5/2024
4.0.443 106 7/29/2024
4.0.440 143 7/22/2024
4.0.437 120 7/16/2024
4.0.434 116 7/16/2024
4.0.431 124 7/16/2024
4.0.426 119 7/16/2024
4.0.419 121 7/16/2024
4.0.412 126 7/16/2024
4.0.382 126 6/10/2024
4.0.375 134 6/3/2024
4.0.372 122 5/28/2024
4.0.369 119 5/28/2024
4.0.364 111 5/28/2024
4.0.357 132 5/28/2024
4.0.348 115 5/20/2024
4.0.345 112 5/20/2024
4.0.340 133 5/13/2024
4.0.337 149 5/6/2024
4.0.334 143 5/6/2024
4.0.331 141 4/30/2024
4.0.328 143 4/30/2024
4.0.323 157 4/30/2024
4.0.316 144 4/30/2024
4.0.313 121 4/29/2024
4.0.302 139 4/22/2024
4.0.299 134 4/22/2024
4.0.294 134 4/22/2024
4.0.291 118 4/22/2024
4.0.282 144 4/16/2024
4.0.279 127 4/16/2024
4.0.274 128 4/16/2024
4.0.267 137 4/16/2024
4.0.250 140 4/8/2024
4.0.247 113 4/8/2024
4.0.242 144 4/8/2024
4.0.235 133 3/25/2024
4.0.232 131 3/25/2024
4.0.227 141 3/25/2024
4.0.220 139 3/21/2024
4.0.210 155 2/26/2024
4.0.207 144 2/26/2024
4.0.202 137 2/26/2024
4.0.193 140 2/19/2024
4.0.186 143 2/19/2024
4.0.177 134 2/19/2024
4.0.160 143 2/14/2024
4.0.154 133 2/12/2024
4.0.151 122 2/12/2024
4.0.148 134 2/6/2024
4.0.145 131 2/5/2024
4.0.140 135 1/30/2024
4.0.135 123 1/29/2024
4.0.132 128 1/29/2024
4.0.127 126 1/29/2024
4.0.120 131 1/29/2024
4.0.112 150 1/22/2024
4.0.107 134 1/22/2024
4.0.104 136 1/22/2024
4.0.99 137 1/22/2024
4.0.90 150 1/16/2024
4.0.82 151 1/15/2024
4.0.77 141 1/15/2024
4.0.70 154 1/8/2024
4.0.67 142 1/8/2024
4.0.62 187 12/25/2023
4.0.59 151 12/25/2023
4.0.54 158 12/25/2023
4.0.47 145 12/25/2023
4.0.38 169 12/18/2023
4.0.35 145 12/18/2023
4.0.32 152 12/18/2023
4.0.25 137 12/18/2023
4.0.3 163 12/17/2023
3.0.467 159 12/14/2023
3.0.461 170 12/12/2023
3.0.458 174 12/11/2023
3.0.455 167 12/11/2023
3.0.452 185 12/11/2023
3.0.445 177 12/5/2023
3.0.440 158 12/5/2023
3.0.435 155 11/28/2023
3.0.432 150 11/28/2023
3.0.427 321 11/23/2023
3.0.424 155 11/21/2023
3.0.417 717 11/14/2023
3.0.411 133 11/14/2023
3.0.408 157 11/14/2023
3.0.400 175 11/10/2023
3.0.391 164 11/7/2023
3.0.388 157 11/7/2023
3.0.385 186 10/24/2023
3.0.382 165 10/17/2023
3.0.378 195 9/25/2023
3.0.373 175 9/24/2023
3.0.370 172 9/24/2023
3.0.365 173 9/24/2023
3.0.356 190 9/17/2023
3.0.353 171 9/17/2023
3.0.348 208 9/13/2023
3.0.338 198 9/13/2023
3.0.335 190 9/13/2023
3.0.332 190 9/13/2023
3.0.322 359 8/28/2023
3.0.314 380 8/13/2023
3.0.311 192 8/13/2023
3.0.308 212 8/13/2023
3.0.301 214 8/13/2023
3.0.291 290 8/3/2023
3.0.288 231 8/2/2023
3.0.283 257 7/28/2023
3.0.280 224 7/25/2023
3.0.277 214 7/25/2023
3.0.269 281 7/19/2023
3.0.266 195 7/19/2023
3.0.212 377 6/27/2023
3.0.209 262 6/26/2023
3.0.202 286 6/19/2023
3.0.193 212 6/18/2023
3.0.188 232 6/18/2023
3.0.183 212 6/18/2023
3.0.166 392 6/7/2023
3.0.156 385 5/31/2023
3.0.150 202 5/31/2023
3.0.147 220 5/31/2023
3.0.117 204 5/25/2023
3.0.114 475 5/4/2023
3.0.113 232 5/2/2023
3.0.109 241 4/28/2023
3.0.102 417 4/10/2023
3.0.97 254 4/9/2023
3.0.89 268 4/4/2023
3.0.84 387 4/3/2023
3.0.75 412 3/27/2023
3.0.72 347 3/25/2023
3.0.65 284 3/25/2023
3.0.56 273 3/25/2023
2.0.39 653 1/24/2023
2.0.38 726 1/9/2023
2.0.33 369 1/9/2023
2.0.32 366 1/9/2023
2.0.31 360 1/9/2023
2.0.26 397 12/14/2022
2.0.25 386 12/8/2022
2.0.24 379 12/8/2022
2.0.21 386 12/8/2022
2.0.12 1,299 11/1/2020
2.0.11 593 10/1/2020
2.0.10 663 9/1/2020
2.0.9 604 8/1/2020
2.0.8 745 7/1/2020
2.0.7 605 6/29/2020
1.0.58 713 6/1/2020
1.0.57 673 5/2/2020
1.0.56 664 5/2/2020
1.0.54 687 5/2/2020
1.0.52 629 5/2/2020
1.0.51 658 5/2/2020
1.0.50 671 5/2/2020
1.0.49 717 5/2/2020
1.0.48 653 5/2/2020
1.0.47 663 5/2/2020
1.0.46 673 5/1/2020
1.0.45 685 5/1/2020
1.0.44 660 5/1/2020
1.0.43 679 5/1/2020
1.0.42 647 5/1/2020
1.0.41 662 5/1/2020
1.0.40 687 5/1/2020
1.0.39 671 5/1/2020
1.0.38 670 5/1/2020
1.0.37 717 5/1/2020
1.0.36 649 5/1/2020
1.0.35 656 5/1/2020
1.0.34 659 5/1/2020
1.0.33 664 5/1/2020
1.0.32 627 5/1/2020
1.0.31 649 5/1/2020
1.0.30 629 5/1/2020
1.0.29 654 5/1/2020
1.0.28 643 5/1/2020
1.0.27 683 5/1/2020
1.0.26 708 5/1/2020
1.0.25 754 5/1/2020
1.0.24 683 5/1/2020
1.0.22 709 5/1/2020
1.0.21 651 4/24/2020
1.0.20 666 4/24/2020
1.0.19 643 4/24/2020
1.0.12 1,065 9/19/2018
1.0.9 1,045 8/16/2018
1.0.8 1,042 8/16/2018