Snusbase Beta Account Search

Documentation

Documentation for our consumer API endpoints. The endpoints below can be used for personal, non-profit and commercial applications free of charge up to 3 requests per second.

If you need a higher rate-limit or more features, contact us and we'll set you up with a private endpoint.


Hash Lookup API

Request

curl -H "authorization: api_code" https://beta.snusbase.com/v1/hash/84d961568a65073a3bcf0eb216b2a576

Response

{
  found: true,
  term: "84d961568a65073a3bcf0eb216b2a576",
  password: "superman"
}

Password Lookup API

Request

curl -H "authorization: api_code" https://beta.snusbase.com/v1/password/superman

Response

{
  found: true,
  results: [
    {"hash":"$2y$10$2nXI3j2KeB5AahIUMH5SROPOemrcflGwV6vFw9GqK.xaDrqvdue2C","password":"superman"},
    {"hash":"$2y$10$3wj/BNGuyWkCYG/KW2obKeJwW6cCwN03vWXG3u4bO5qY0lPuIpGYK","password":"superman"},
    {"hash":"$2y$10$7hlB9N2JGJw7/r38DHFLzeOoRgNUzivLv.OaPTRjI1qAmMAVH8g9q","password":"superman"}
  ]
}

IP Information API

Request

curl -H "authorization: api_code" https://beta.snusbase.com/v1/whois/12.34.56.78

Response

{
  found: true,
  as: "AS7018 AT&T Services, Inc.",
  city: "Huntington",
  country: "United States",
  countryCode: "US",
  isp: "AT&T Services",
  mobile: false,
  org: "Northwestern Mutualvb2e-is OR",
  proxy: false,
  region: "WV",
  regionName: "West Virginia",
  timezone: "America/New_York",
  zip: "25701"
}