
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
SDK oficial para integração com a IPTU API.
npm install iptuapi
# ou
yarn add iptuapi
# ou
pnpm add iptuapi
import { IPTUClient } from 'iptuapi';
const client = new IPTUClient('sua_api_key');
// Consulta por endereço
const resultado = await client.consultaEndereco('Avenida Paulista', '1000');
console.log(resultado);
// Consulta por SQL (Starter+)
const dados = await client.consultaSQL('100-01-001-001');
// Avaliação de mercado (Pro+)
const avaliacao = await client.valuationEstimate({
area_terreno: 250,
area_construida: 180,
bairro: 'Pinheiros',
zona: 'ZM',
tipo_uso: 'Residencial',
tipo_padrao: 'Médio',
ano_construcao: 2010,
});
console.log(`Valor estimado: R$ ${avaliacao.valor_estimado.toLocaleString()}`);
import { IPTUClient, NotFoundError, RateLimitError } from 'iptuapi';
const client = new IPTUClient('sua_api_key');
try {
const resultado = await client.consultaEndereco('Rua Inexistente');
} catch (error) {
if (error instanceof NotFoundError) {
console.log('Imóvel não encontrado');
} else if (error instanceof RateLimitError) {
console.log('Limite de requisições excedido');
}
}
O SDK inclui tipos TypeScript completos:
import type {
ConsultaEnderecoResult,
ConsultaSQLResult,
ValuationParams,
ValuationResult,
} from 'iptuapi';
Acesse a documentação completa em iptuapi.com.br/docs
FAQs
SDK oficial para a IPTU API - Dados de IPTU de São Paulo, Belo Horizonte e Recife
The npm package iptuapi receives a total of 4 weekly downloads. As such, iptuapi popularity was classified as not popular.
We found that iptuapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.