npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

br-cidades-estados-nodejs

v1.0.6

Published

API para consultar todos os estados e cidades do Brasil

Downloads

20

Readme

API Estados e Cidades do Brasil

API para consultar todos os estados e cidades do Brasil

glitch.me - projeto: https://glitch.com/edit/#!/br-cidade-estado-nodejs

glitch.me - preview: https://br-cidade-estado-nodejs.glitch.me/estados

Build Status npm version Known Vulnerabilities

Como funciona

  • Instalação
  $ npm install
  • Iniciar aplicação
$ npm start

Acessar http://localhost:3000/estados no navegador e seguir a documentação para fazer outras chamadas na API.

Estados

Listar todos os estados:

GET /estados
[
  {
    "id": "AC",
    "estado": "Acre"
  },
  {
    "id": "AL",
    "estado": "Alagoas"
  },
  {
    "id": "AM",
    "estado": "Amazonas"
  },
]

Ordenar os estados _sort=id|estado&_order=asc|desc (padrão asc):

GET /estados?_sort=id
GET /estados?_sort=id&_order=asc
GET /estados?_sort=id&_order=desc

GET /estados?_sort=estado
GET /estados?_sort=estado&_order=asc
GET /estados?_sort=estado&_order=desc

Pesquisar um estado q=:

GET /estados?q=Ama
[
  {
    "id": "AM",
    "estado": "Amazonas"
  },
  {
    "id": "AP",
    "estado": "Amapá"
  }
]
GET /estados?q=Amazonas
[
  {
    "id": "AM",
    "estado": "Amazonas"
  }
]
GET /estados?q=RR
[
  {
    "id": "RR",
    "estado": "Roraima"
  }
]

Filtrar estado:

GET /estados?id=SP
GET /estados?estado=São Paulo

Múltiplos filtros com ou sem ordenação:

GET /estados?id=SP&id=RJ
GET /estados?id=SP&id=RJ&_sort=id&_order=asc
GET /estados?id=SP&id=RJ&_sort=id&_order=desc
GET /estados?id=SP&id=RJ&_sort=estado&_order=asc
GET /estados?id=SP&id=RJ&_sort=estado&_order=desc

GET /estados?estado=São Paulo&estado=Rio de Janeiro
GET /estados?estado=São Paulo&estado=Rio de Janeiro&_sort=id&_order=asc
GET /estados?estado=São Paulo&estado=Rio de Janeiro&_sort=id&_order=desc
GET /estados?estado=São Paulo&estado=Rio de Janeiro&_sort=estado&_order=asc
GET /estados?estado=São Paulo&estado=Rio de Janeiro&_sort=estado&_order=desc

Paginação _page=<numero>&_limit=<quantidade por pagina>, 10 itens são retornados por padrão.

GET /estados?_page=1
GET /estados?_page=1&_limit=5
  • No header é retornado os links para as páginas - primeira, anterior, próxima e última:
Link: </estados?_page=1&_limit=5>; rel="first", </estados?_page=1&_limit=5>; rel="prev", </estados?_page=3&_limit=5>; rel="next", </estados?_page=6&_limit=5>; rel="last"

Cidades

Listar todas as cidades de um estado:

GET /estados/:id
GET /estados/DF

GET /estados/:id/cidades
GET /estados/DF/cidades
{
  "id": "DF",
  "estado": "Distrito Federal",
  "cidades": [
    {
      "estadoId": "DF",
      "cidade": "Brasília",
      "capital": true
    }
  ]
}

Ordenar as cidades _sort=id|estado&_order=asc|desc (padrão asc):

GET /estados/:id/cidades?_sort=id
GET /estados/:id/cidades?_sort=id&_order=asc
GET /estados/:id/cidades?_sort=id&_order=desc

GET /estados/SP/cidades?_sort=cidade
GET /estados/SP/cidades?_sort=cidade&_order=asc
GET /estados/SP/cidades?_sort=cidade&_order=desc

Pesquisar uma cidade q=:

GET /estados/:id/cidades?q=

GET /estados/SP/cidades?q=ilha
[
  {
    "estadoId": "SP",
    "cidade": "Ilha Comprida"
  },
  {
    "estadoId": "SP",
    "cidade": "Ilha Solteira"
  },
  {
    "estadoId": "SP",
    "cidade": "Ilhabela"
  }
]

Filtrar cidade:

GET /estados/:id/cidades?cidade=

GET /estados/SP/cidades?cidade=Ilhabela
[
  {
    "estadoId": "SP",
    "cidade": "Ilhabela"
  }
]

Múltiplos filtros com ou sem ordenação:

GET /estados/SP/cidades?cidade=Ilhabela&cidade=Embu
GET /estados/SP/cidades?cidade=Ilhabela&cidade=Embu&_sort=cidade&_order=desc
GET /estados/SP/cidades?cidade=Ilhabela&cidade=Embu&_sort=cidade&_order=asc

Paginação _page=<numero>&_limit=<quantidade por pagina>, 10 itens são retornados por padrão.

GET /estados/SP/cidades?_page=1
GET /estados/SP/cidades?_page=1&_limit=5
  • No header é retornado os links para as páginas - primeira, anterior, próxima e última:
Link: </estados/SP/cidades?_page=1&_limit=5>; rel="first", </estados/SP/cidades?_page=1&_limit=5>; rel="prev", </estados/SP/cidades?_page=3&_limit=5>; rel="next", </estados/SP/cidades?_page=129&_limit=5>; rel="last"

Capitais

Listar todas as cidades que são capitais:

GET /capitais
GET /cidades?capital=true
GET /cidades?capital=true&estadoId=SP
GET /cidades?capital=true&estadoId=SP&estadoId=RJ
[
  {
    "estadoId": "AC",
    "cidade": "Rio Branco",
    "capital": true
  },
]

Autor

| @giovanigenerali | | :---: |