There are many ways to learn the location of a computer from its IP address, but how do you go about it if you decide to use the command line to find the information? Today’s SuperUser Q&A post has some helpful suggestions to help a reader find the information he wants.

Today’s Question & Answer session comes to us courtesy of SuperUser—a subdivision of Stack Exchange, a community-driven grouping of Q&A web sites.

Screenshot courtesy of Paul Fenwick (Flickr).

The Question

SuperUser reader AlikElzin-kilaka wants to know how to find a computer’s IP address location using the command line:

How do you find a computer’s IP address location using the command line?

The Answer

SuperUser contributors AlikElzin-kilaka and Ben N have the answer for us. First up, AlikElzin-kilaka:

Followed by the answer from Ben N:

curl ipinfo. io

Result:

A specific IP’s info can also be requested:

curl ipinfo. io/216. 58. 194. 46

Result:

Source: How to look up the geographic location of an IP address from the command line

Have something to add to the explanation? Sound off in the comments. Want to read more answers from other tech-savvy Stack Exchange users? Check out the full discussion thread here.

(curl ipinfo. io). Content

Which produces a JSON string. To get the object that the JSON represents, use ConvertFrom-Json:

curl ipinfo. io | ConvertFrom-Json

Since that is a PowerShell object, you can easily get specific fields from it. For example, this command gets just the external IP address as a string:

(curl ipinfo. io | ConvertFrom-Json). ip

Note that the geographical information from this service is not super accurate, but it did locate me within 20 miles or so of my actual location and the ISP information seems to be reliable.