Receitaws.API.Client.DependencyInjection
1.0.0
dotnet add package Receitaws.API.Client.DependencyInjection --version 1.0.0
NuGet\Install-Package Receitaws.API.Client.DependencyInjection -Version 1.0.0
<PackageReference Include="Receitaws.API.Client.DependencyInjection" Version="1.0.0" />
paket add Receitaws.API.Client.DependencyInjection --version 1.0.0
#r "nuget: Receitaws.API.Client.DependencyInjection, 1.0.0"
// Install Receitaws.API.Client.DependencyInjection as a Cake Addin #addin nuget:?package=Receitaws.API.Client.DependencyInjection&version=1.0.0 // Install Receitaws.API.Client.DependencyInjection as a Cake Tool #tool nuget:?package=Receitaws.API.Client.DependencyInjection&version=1.0.0
Receitaws .NET API Client
This is a .NET client implementation of the receitaws api that gives you data of brazilian companies and enterprises.
You can use the receitaws's API for free, some endpoints doesnt need authentication, and the ones that does you can register on their website for free. You just need to login on the account, go to the API section and generate a token to use.
Packages
Package | Version | Downloads | Workflow |
---|---|---|---|
Receitaws.API.Client | |||
Receitaws.API.Client.DependencyInjection |
Endpoints
- FindByCnpj: Find a company by its CNPJ number;
var company = await client.LegalEntity.FindByCnpj(cnpj);
- FindByCnpj with precision: Find a company by its CNPJ number with days precision of the data;
Note: You must be authenticated to use this endpoint
var company = await client.LegalEntity.FindByCnpj(cnpj, days);
Note: This endpoint is not free, is going to discount of your avaliable quote quantity.
- GetAccountProfile: Get informations about your receitaws's account, basically the quotes remaining quantity.
Note: You must be authenticated to use this endpoint
var accountProfile = await client.Account.GetAccountProfile();
- GetAccountHistoricReport: Get a historic report of the APIs calls that used your quotes, the calls that costed quotes.
Note: You must be authenticated to use this endpoint
var accountHistoricReport = await client.Account.GetAccountHistoricReport();
Configuration
This Api integration is ver simple, there is no authentication/authorization requirements, you can use it with almost no configurations.
You can instanciate this client in three different ways:
- Using default configs: This uses the default baseUrl, timeout and Throw on any error flag.
Note: This default setup is without token, so you can only access the method <b>FindByCnpj</b> because is the only >one that doesnt need authentication.
var client = new Receitaws();
or by dependency injection:
services.AddReceitawsApiClient();
- Only configurating the token:
var client = new Receitaws(token);
or by dependency injection:
services.AddReceitawsApiClient(token);
- And setup manually all configurations with your preferences:
var configs = new ReceitawsApiClientConfiguration
{
Token = "YOUR_API_TOKEN",
BaseUrl = baseUrl,
MaxTimeout = 10000,
ThrowOnAnyError = false
};
var client = new Receitaws(configs);
or by dependency injection:
var configs = new ReceitawsApiClientConfiguration
{
Token = "YOUR_API_TOKEN",
BaseUrl = baseUrl,
MaxTimeout = 10000,
ThrowOnAnyError = false
};
services.AddReceitawsApiClient(configs);
Product | Versions 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Receitaws.API.Client (>= 1.0.0)
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.0.0 | 157 | 9/9/2023 |