Parameter Structure

The parameters are expected in the following sequence:

  1. Request Type: The type of the requested object (get)
  2. IP Address: Add this parameter to transmit a specified IP address



Request:
GET https://geoip.sonymusic.de/get



Response:
{
  "success":true,
  "error":[],
  "response":{
     "iso":"DE",
     "name":"Germany",
     "timestamp":1423580777,
     "status":"200",
     "client":"150.175.150.37",
     "server":"46.252.18.252"
  }
}



Request:
GET https://geoip.sonymusic.de/get/150.175.150.37



Response:
{
  "success":true,
  "error":[],
  "response":{
     "iso":"DE",
     "name":"Germany",
     "timestamp":1423580777,
     "status":"200",
     "client":"150.175.150.37",
     "server":"46.252.18.252"
  }
}



Request:
GET https://geoip.sonymusic.de/api/{SERVICE}/CCLocation/get



Response:
{
  "success":false,
  "error":{
     "code":404,
     "message":"This feature is currently not provided"
  },
  "response":[]
}