Skip to content

TheLe0/receitaws-api-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Receitaws .NET API Client

Test CI

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 NuGet Version NuGet Downloads Deploy
Receitaws.API.Client.DependencyInjection NuGet Version NuGet Downloads Deploy

Endpoints

  1. FindByCnpj: Find a company by its CNPJ number;
var company = await client.LegalEntity.FindByCnpj(cnpj);
  1. 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.

  1. 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();
  1. 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:

  1. 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 FindByCnpj because is the only >one that doesnt need authentication.

var client = new Receitaws();

or by dependency injection:

services.AddReceitawsApiClient();
  1. Only configurating the token:
var client = new Receitaws(token);

or by dependency injection:

services.AddReceitawsApiClient(token);
  1. 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);