IBGE

IBGE

Geocoding

Aggregate services of IBGE (Brazilian Institute of Geography and Statistics)

Visit API

πŸ“š Documentation & Examples

Everything you need to integrate with IBGE

πŸš€ Quick Start Examples

IBGE Javascript Examplejavascript
// IBGE API Example
const response = await fetch('https://servicodados.ibge.gov.br/api/docs/', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

The IBGE (Brazilian Institute of Geography and Statistics) API offers a robust set of aggregated services designed to provide easy access to a vast array of statistical and geographical data for Brazil. This resource is invaluable for developers, researchers, and analysts seeking to integrate reliable demographic, economic, and geographic information into their applications. The documentation, available at IBGE API Documentation, provides comprehensive guidance on how to effectively utilize this API, enabling users to navigate through an extensive dataset and extract the information they need with minimal effort.

Utilizing the IBGE API brings numerous benefits, including real-time access to official Brazilian data, seamless integration capabilities for diverse applications, a wealth of detailed statistical datasets covering various sectors, the ability to enhance data-driven decision-making processes, and support for a broad range of programming languages. By leveraging this API, developers can ensure their applications are equipped with the most accurate and up-to-date information available. Here’s a simple JavaScript code example that demonstrates how to make a call to the IBGE API:

fetch('https://servicodados.ibge.gov.br/api/v2/censos/indicadores')
  .then(response => response.json())
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error('Error fetching data:', error);
  });
πŸ”’

Security Assessment

F
πŸ”’HTTPS
Enabled
SSL Grade: A
πŸ›‘οΈHeaders
0/100
πŸ•’Last Assessed
1 months ago
ℹ️Click for detailed analysis

πŸ“Š 30-Day Uptime History

Daily uptime tracking showing online vs offline minutes

Jul 5Jul 7Jul 9Jul 11Jul 13Jul 15Jul 17Jul 19Jul 21Jul 23Jul 25Jul 27Jul 29Jul 31Aug 304008001440Minutes
Online
Offline

Related APIs in Geocoding