We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
They also provide a database, claiming 4bilion wifi APs.
BSSID lookup has free 100calls/day/IP plan, but has to be activated via support. https://unwiredlabs.com/api
demo
import requests url = "https://eu1.unwiredlabs.com/v2/process" payload = "{\"token\": \"your_API_token\",\"radio\": \"gsm\",\"mcc\": 310,\"mnc\": 410,\"cells\": [{\"lac\": 7033,\"cid\": 17811}],\"wifi\": [{\"bssid\": \"00:17:c5:cd:ca:aa\",\"channel\": 11,\"frequency\": 2412,\"signal\": -51}, {\"bssid\": \"d8:97:ba:c2:f0:5a\"}],\"address\": 1}" response = requests.request("POST", url, data=payload) print(response.text)
request
{ "token": "API key", "wifi": [{ "bssid": "00:17:c5:cd:ca:aa", "signal": -51 }, { "bssid": "d8:97:ba:c2:f0:5a" }], "address": 1 }
they say min 2 closeby bssid s are needed, not sure how strict that is
response
{ "status": "ok", "balance": 100, "lat": 39.56763197, "lon": -105.00727917, "accuracy": 10, // meter }
The text was updated successfully, but these errors were encountered:
Thanks for all the feedback. If you can create a commit it will be great. @mrx23dot
Sorry, something went wrong.
No branches or pull requests
They also provide a database, claiming 4bilion wifi APs.
BSSID lookup has free 100calls/day/IP plan, but has to be activated via support.
https://unwiredlabs.com/api
demo
request
they say min 2 closeby bssid s are needed, not sure how strict that is
response
The text was updated successfully, but these errors were encountered: