IPinfo Places API
The IPinfo Places API identifies the real-world location associated with an IP address at the building level. It matches IP addresses observed on venue Wi-Fi networks to verified physical places such as hotels, airports, museums, stadiums, transit stations, and 70+ other categories.
- Place name: The name of the venue or building associated with the IP address. This information can be used to identify the brand of the business as well.
- Location category: One of 70+ standardized location tags (e.g.,
hotel,museum,airport). - Network SSID: The Wi-Fi network name observed at the venue.
- Coordinates: The building-level latitude and longitude of the matched place.
IPinfo Places is currently in public beta. Access is available via API. Additional fields and data (including brand, building dimensions, polygon boundaries, BSSIDs, and last-seen date) are available for select use cases.
Request access to learn more.
Quick Reference
API Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "IPinfo Places API Response",
"description": "Schema for IPinfo Places API response",
"type": "object",
"properties": {
"ip": {
"type": "string",
"description": "The IP address being queried.",
"example": "65.144.40.106"
},
"name": {
"type": "string",
"description": "The name of the venue or building associated with the IP address.",
"example": "Museum of History and Industry (MOHAI)"
},
"category": {
"type": "string",
"description": "The location category tag for the venue.",
"example": "museum"
},
"ssid": {
"type": "string",
"description": "The Wi-Fi network name (SSID) observed at the venue.",
"example": "MOHAI-Guest"
},
"latitude": {
"type": "number",
"description": "The latitude coordinate of the matched place.",
"example": 47.6275
},
"longitude": {
"type": "number",
"description": "The longitude coordinate of the matched place.",
"example": -122.3367
}
}
}
| Field | Description | Example |
|---|---|---|
ip | The IP address being queried. | 65.144.40.106 |
name | The name of the venue or building associated with the IP address. | Museum of History and Industry (MOHAI) |
category | The location category tag for the venue. See the full list of supported categories below. | museum |
ssid | The Wi-Fi network name (SSID) observed at the venue. | MOHAI-Guest |
latitude | The latitude coordinate of the matched place. | 47.6275 |
longitude | The longitude coordinate of the matched place. | -122.3367 |
Lookup an IP address
curl https://api.ipinfo.io/places/65.144.40.106?token=$TOKEN
{
"ip": "65.144.40.106",
"name": "Museum of History and Industry (MOHAI)",
"category": "museum",
"ssid": "MOHAI-Guest",
"latitude": 47.6275,
"longitude": -122.3367
}
Batch lookups
The Places API is supported in the batch endpoint, allowing you to combine Places lookups with other IPinfo data in a single request.
curl -X POST "https://api.ipinfo.io/batch?token=$TOKEN" \
-H 'Content-Type: text/plain' \
-d 'places/65.144.40.106
places/1.0.141.187'
{
"places/65.144.40.106": {
"ip": "65.144.40.106",
"name": "Museum of History and Industry (MOHAI)",
"category": "museum",
"ssid": "MOHAI-Guest",
"latitude": 47.6275,
"longitude": -122.3367
},
"places/1.0.141.187": {
"ip": "1.0.141.187",
"name": "Blu Monkey Hub and Hotel Chanthaburi",
"category": "hotel",
"ssid": "BLU MONKEY",
"latitude": 12.6385,
"longitude": 102.0957
}
}
IP Address Types
Transport
Includes airports, terminals, lounges, heliports, seaplane bases, and related air-travel services.
https://api.ipinfo.io/places/1.146.102.70?token=$TOKEN
{
"ip": "1.146.102.70",
"name": "Sunshine Coast Airport",
"category": "airport",
"ssid": "TelstraFA2D7E",
"latitude": -26.5968,
"longitude": 153.0853
}
Includes metro stations, light rail stops, cable car services, and related urban transit infrastructure.
https://api.ipinfo.io/places/103.66.132.194?token=$TOKEN
{
"ip": "103.66.132.194",
"name": "Gadigal",
"category": "subway_station",
"ssid": "CityTattsFreeWiFi",
"latitude": -33.8739,
"longitude": 151.2086
}
Travel Status
Identifies IP addresses observed on personal hotspots or mobile devices while in transit between locations. This category is not tied to a specific venue, so the name field is not returned.
https://api.ipinfo.io/places/1.46.136.18?token=$TOKEN
{
"ip": "1.46.136.18",
"category": "in_transit",
"ssid": "Mi 10T Pro",
"latitude": null,
"longitude": null
}
Automotive
Includes car dealerships, used car lots, truck and motorcycle dealers, RV and boat dealers, auctions, and automotive service businesses.
https://api.ipinfo.io/places/100.0.194.90?token=$TOKEN
{
"ip": "100.0.194.90",
"name": "Metro Ford",
"category": "car_dealer",
"ssid": "Metro CUSTOMER",
"latitude": 41.9036,
"longitude": -71.0035
}
Entertainment & Nightlife
Includes pubs, cocktail bars, wine bars, breweries, karaoke bars, sports bars, and other nightlife venues.
https://api.ipinfo.io/places/1.145.157.200?token=$TOKEN
{
"ip": "1.145.157.200",
"name": "Railway Hotel Heyfield",
"category": "bar_pub",
"ssid": "Railway Hotel Free WiFi",
"latitude": -37.9809,
"longitude": 146.7871
}
Includes arcades, amusement-oriented game venues, laser tag centers, and tabletop gaming destinations.
https://api.ipinfo.io/places/103.110.178.18?token=$TOKEN
{
"ip": "103.110.178.18",
"name": "NRMA Yarrawonga Mulwala Holiday Park",
"category": "gaming_arcade",
"ssid": "NRMA-Guest-WiFi",
"latitude": -35.9751,
"longitude": 146.025
}
Arts & Culture
Includes aquariums, aquatic specialty venues, and related visitor destinations centered on marine life.
https://api.ipinfo.io/places/104.255.2.38?token=$TOKEN
{
"ip": "104.255.2.38",
"name": "Seattle Aquarium",
"category": "aquarium",
"ssid": "Aquarium Public Wi-Fi",
"latitude": 47.6077,
"longitude": -122.343
}
Includes public libraries and related community learning or media access spaces.
https://api.ipinfo.io/places/100.42.166.242?token=$TOKEN
{
"ip": "100.42.166.242",
"name": "Coos Bay Public Library",
"category": "library",
"ssid": "CBPL_Public",
"latitude": 43.3668,
"longitude": -124.2175
}
Sports & Recreation
Includes golf courses, golf clubs, driving ranges, instructors, indoor golf centers, and related golf facilities.
https://api.ipinfo.io/places/1.145.108.172?token=$TOKEN
{
"ip": "1.145.108.172",
"name": "Moore Park Golf",
"category": "golf_course",
"ssid": "Telstra049FF2",
"latitude": -33.9002,
"longitude": 151.2188
}
Includes skating rinks, ice rinks, skate parks, hockey venues, skate shops, and related action-sports facilities.
https://api.ipinfo.io/places/103.106.110.234?token=$TOKEN
{
"ip": "103.106.110.234",
"name": "Wainuiomata Bmx Track",
"category": "skating_rink",
"ssid": "MVTR-Wainuiomata",
"latitude": -41.2592,
"longitude": 174.9425
}
Events & Venues
Includes conference centers, exhibition halls, and trade-show venues.
https://api.ipinfo.io/places/100.2.110.124?token=$TOKEN
{
"ip": "100.2.110.124",
"name": "Richi Rich Palace",
"category": "conference_center",
"ssid": "RICHI RICH PALACE",
"latitude": 40.6923,
"longitude": -73.8352
}
Includes music venues, auditoriums, choirs, opera and ballet spaces, radio stations, and music production facilities.
https://api.ipinfo.io/places/100.0.60.34?token=$TOKEN
{
"ip": "100.0.60.34",
"name": "City Arena",
"category": "music_venue",
"ssid": "Mass City Guest",
"latitude": 42.0702,
"longitude": -70.7761
}
Shopping & Retail
Includes bicycle shops, repair services, and cycling equipment retailers.
https://api.ipinfo.io/places/100.15.244.201?token=$TOKEN
{
"ip": "100.15.244.201",
"name": "Griffin Cycle Inc",
"category": "bicycle_store",
"ssid": "Griffin Cycle WiFi",
"latitude": 38.9811,
"longitude": -77.0997
}
Includes florists, gift shops, and seasonal specialty retailers.
https://api.ipinfo.io/places/104.152.26.155?token=$TOKEN
{
"ip": "104.152.26.155",
"name": "Bronner's CHRISTmas Wonderland",
"category": "florist",
"ssid": "BronnersWiFi",
"latitude": 43.314,
"longitude": -83.7371
}
Includes liquor stores, wine shops, and related beverage retailers.
https://api.ipinfo.io/places/100.8.175.220?token=$TOKEN
{
"ip": "100.8.175.220",
"name": "Ever Blue Liquors",
"category": "liquor_store",
"ssid": "everblueliquor",
"latitude": 40.6327,
"longitude": -74.2569
}
Includes sporting goods retailers and athletic equipment shops.
https://api.ipinfo.io/places/100.37.6.246?token=$TOKEN
{
"ip": "100.37.6.246",
"name": "Bedessee Imports Inc",
"category": "sporting_goods_store",
"ssid": "BEDESSEE",
"latitude": 40.663,
"longitude": -73.8718
}
Food & Dining
Includes coffee shops, cafes, and related quick-service beverage venues.
https://api.ipinfo.io/places/1.132.111.96?token=$TOKEN
{
"ip": "1.132.111.96",
"name": "Zarraffa's Coffee",
"category": "coffee_shop",
"ssid": "Zarraffas Private",
"latitude": -27.9864,
"longitude": 153.4115
}
Health & Wellness
Includes beauty salons, hair salons, nail salons, and related personal care businesses.
https://api.ipinfo.io/places/1.132.107.61?token=$TOKEN
{
"ip": "1.132.107.61",
"name": "Studio 23",
"category": "beauty_salon",
"ssid": "Geo's S22",
"latitude": -27.9324,
"longitude": 153.3843
}
Includes spas, massage studios, and wellness centers.
https://api.ipinfo.io/places/1.40.95.235?token=$TOKEN
{
"ip": "1.40.95.235",
"name": "Absolute Thai Massage",
"category": "spa_wellness",
"ssid": "\u0e23\u0e49\u0e32\u0e19\u0e19\u0e27\u0e14dapto",
"latitude": -34.4972,
"longitude": 150.791
}
Professional & Community Services
Includes banks, credit unions, and related financial services institutions.
https://api.ipinfo.io/places/1.123.203.199?token=$TOKEN
{
"ip": "1.123.203.199",
"name": "Bendigo Bank",
"category": "bank_financial",
"ssid": "Telstra7107CD",
"latitude": -37.8319,
"longitude": 145.1482
}
Includes tour operators and other service businesses that don't fit into a more specific category.
https://api.ipinfo.io/places/1.145.95.165?token=$TOKEN
{
"ip": "1.145.95.165",
"name": "Troll Tours",
"category": "other_services",
"ssid": "Big Bus Tours",
"latitude": -33.8616,
"longitude": 151.2123
}
Accommodation
Includes hotels, inns, motels, lodges, hostels, resorts, cottages, cabins, and other short- and long-stay accommodation providers.
https://api.ipinfo.io/places/1.120.141.244?token=$TOKEN
{
"ip": "1.120.141.244",
"name": "Islington Hotel",
"category": "hotel",
"ssid": "Islington",
"latitude": -42.8967,
"longitude": 147.3136
}
Public Infrastructure
Identifies IP addresses observed on public Wi-Fi networks in shared or open spaces without a specific venue match. Since there's no specific venue, the name field is not returned.
https://api.ipinfo.io/places/1.210.101.118?token=$TOKEN
{
"ip": "1.210.101.118",
"category": "public_space",
"ssid": "U+zone",
"latitude": 34.7583,
"longitude": 127.7168
}
Supported Categories
IPinfo Places currently supports 70+ location tags. The table below lists the available categories currently. Please go to our product page for a continuously updated list of places.
| Category | Description | Sample IP |
|---|---|---|
airport | Airport Wi-Fi networks and terminal infrastructure. | 1.146.102.70 |
aquarium | Public aquarium visitor networks. | 104.255.2.38 |
bank_financial | Bank and financial institution networks. | 1.123.203.199 |
bar_pub | Bar and pub guest Wi-Fi and entertainment venue networks. | 1.145.157.200 |
beauty_salon | Beauty and hair salon guest networks. | 1.132.107.61 |
bicycle_store | Bicycle shop and cycling retailer networks. | 100.15.244.201 |
book_store | Book store and stationery retailer networks. | 100.2.178.251 |
botanical_garden | Botanical garden visitor networks. | 103.181.45.17 |
bowling_alley | Bowling alley guest Wi-Fi. | 101.187.155.196 |
bus_station | Bus terminal networks and public transit hub infrastructure. | 104.28.163.21 |
car_dealer | Car dealership visitor networks and automotive facility infrastructure. | 100.0.194.90 |
car_parts_services | Auto parts and repair shop networks. | 1.121.177.207 |
car_rental | Car rental counter networks, often at airports and transit hubs. | 103.110.142.65 |
casino | Casino guest networks and gaming facility infrastructure. | 1.129.22.61 |
cinema | Movie theater guest Wi-Fi. | 1.44.156.150 |
clothing_store | Clothing and apparel retailer networks. | 1.141.30.90 |
coffee_shop | Coffee shop and cafe guest networks. | 1.132.111.96 |
community_center | Community center and civic organization networks. | 1.125.106.22 |
conference_center | Convention centers, exhibition halls, and event venue networks. | 100.2.110.124 |
coworking_space | Shared office environments and flexible workspace networks. | 103.179.202.35 |
electronics_store | Electronics and mobile phone retailer networks. | 1.121.150.185 |
event_services | Event service providers including photography, bridal shops, equipment rental, and catering. | 101.178.215.130 |
events_venue | Event venue networks, including multipurpose arenas. | 100.35.29.78 |
fast_food | Fast food and quick-service dining networks. | 100.1.165.227 |
ferry_station | Ferry terminal networks. | 100.38.58.132 |
florist | Florist and gift shop retailer networks. | 104.152.26.155 |
gallery | Art gallery visitor networks. | 103.224.53.17 |
gaming_arcade | Gaming arcade networks. | 103.110.178.18 |
gas_convenience_store | Gas station and convenience store networks. | 1.124.104.244 |
golf_course | Golf course clubhouse networks. | 1.145.108.172 |
grocery_store | Grocery store and supermarket networks. | 1.129.23.144 |
gym | Gym and fitness center networks. | 1.146.89.55 |
home_and_hardware_store | Hardware store and home improvement retailer networks. | 1.40.217.28 |
home_services | Real estate and home service provider networks. | 1.141.177.153 |
hotel | Hotel guest networks, lobby Wi-Fi, and hospitality infrastructure. | 1.120.141.244 |
in_flight | In-flight Wi-Fi networks aboard commercial aircraft. | 103.1.212.62 |
in_transit | Mobile hotspot and personal device networks observed while in transit. | 1.46.136.18 |
jewelry_store | Jewelry store and fine goods retailer networks. | 100.12.1.186 |
landmark_monument | Visitor networks at landmarks, monuments, and tourist attractions. | 1.145.229.163 |
laundromat | Laundromat and self-service laundry networks. | 100.1.11.178 |
legal_services | Law firm and legal service provider networks. | 100.12.115.210 |
library | Public library networks and community learning center infrastructure. | 100.42.166.242 |
liquor_store | Liquor store and beverage retailer networks. | 100.8.175.220 |
mall | Shopping mall and multi-retailer commercial complex networks. | 1.123.0.159 |
market | Market and marketplace vendor networks. | 101.187.51.148 |
medical_lab | Medical laboratory and diagnostic center networks. | 100.8.29.242 |
mobile_home_park | Mobile home park and caravan park networks. | 1.129.108.49 |
museum | Museum visitor networks and cultural institution Wi-Fi. | 103.176.216.104 |
music_venue | Music venue guest networks and concert halls. | 100.0.60.34 |
nightclub | Nightclub and dance club guest networks. | 101.176.27.94 |
other_services | Tour operators and other miscellaneous service provider networks. | 1.145.95.165 |
other_store | Miscellaneous specialty and general retailer networks. | 1.136.20.100 |
pets | Veterinary clinic and pet care provider networks. | 100.34.109.98 |
pharmacy | Pharmacy and drug store retailer networks. | 1.44.122.26 |
professional_services | Post office and professional service provider networks. | 1.123.143.102 |
public_space | Public Wi-Fi networks in shared or open spaces. | 1.210.101.118 |
restaurant | Restaurant and full-service dining networks. | 1.178.85.149 |
skating_rink | Skating rink visitor networks. | 103.106.110.234 |
ski_resort | Ski resort and winter-sports destination networks. | 107.2.139.95 |
spa_wellness | Spa, massage, and wellness center networks. | 1.40.95.235 |
sporting_goods_store | Sporting goods and athletic equipment retailer networks. | 100.37.6.246 |
sports_center | Sports club, court, and recreational complex networks. | 100.1.226.90 |
stadium | Stadium networks and sporting event venues. | 1.44.109.33 |
storage | Storage facility and freight/logistics warehouse networks. | 104.157.26.246 |
subway_station | Subway and metro station networks. | 103.66.132.194 |
super_store | Big-box retailer and super store networks. | 1.146.110.244 |
theater | Theater guest networks and performing arts venues. | 100.1.169.2 |
theme_park | Theme park visitor Wi-Fi and amusement attraction networks. | 103.80.20.113 |
train_station | Railway station networks and rail transit hub infrastructure. | 1.145.168.91 |
water_park | Water park visitor networks. | 104.152.26.220 |
zoo | Zoo visitor networks and wildlife park facilities. | 101.178.227.144 |
Additional Data (Available on Request)
For select use cases, we can provide additional points of interest and network-level metadata.