.wpb_animate_when_almost_visible { opacity: 1; }
Orange Wifi Locator France Beta
Get the Orange Wifi hotspots and information such as distance from search coordinates, among all Orange WIFI points : public ones, partners' and community wifi related.
3.0

The Orange WiFi Locator API allows you to fetch information about more than 4 millions WiFi hot-spots for Orange, Orange affiliates and Orange Community WiFi in metropolitan France. Search is based on a circular area, given latitude and longitude coordinates and custom radius (default provided).

Prerequisite

Orange Wifi Locator API requires an access_token. This authentication method is described here.

Get Hot-spots info

You can list Hot-spots information with any given coordinates and radius. For example:

curl -X GET -H "Authorization: Bearer {access_token}" \
https://api.orange.com/wifilocator/v3/hotspots?latitude=48.8245&longitude=2.2743&radius=1000
HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
[
  {
    "longitude": 2.274422,
    "latitude": 48.824554,
    "hotspotId": "222627",
    "city": "Issy-Les-Moulineaux",
    "place": "autre",
    "postalCode": "92130",
    "name": "Hotspot Orange",
    "distance": 11,
    "state": "",
    "company": "",
    "website": "",
    "ssid": ""
  },
  {
    "longitude": 2.274422,
    "latitude": 48.824554,
    "hotspotId": "7966705",
    "city": "Issy Les Moulineaux",
    "place": "autre",
    "postalCode": "92130",
    "name": "Hotspot Orange",
    "distance": 11,
    "state": "",
    "company": "",
    "website": "",
    "ssid": ""
  },
  {
    "longitude": 2.274685,
    "latitude": 48.824645,
    "hotspotId": "7880402",
    "city": "Issy les Moulineaux",
    "place": "autre",
    "postalCode": "92130",
    "name": "Hotspot Orange",
    "distance": 32,
    "state": "",
    "company": "",
    "website": "",
    "ssid": ""
  },
  .../...
  {
    "longitude": 2.273617,
    "latitude": 48.824016,
    "hotspotId": "7921899",
    "city": "Issy-les-moulineaux",
    "place": "autre",
    "postalCode": "92130",
    "name": "Hotspot Orange",
    "distance": 73,
    "state": "",
    "company": "",
    "website": "",
    "ssid": ""
  }
]