GET Internet/NSLookup?apiKey={apiKey}&HostOrIP={HostOrIP}
Documentation for 'NSLookup'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| apiKey | Documentation for 'apiKey'. |
Define this parameter in the request URI. |
| HostOrIP | Documentation for 'HostOrIP'. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Validation": {
"isSuccess": true,
"Message": "sample string 2"
},
"addresses": [
{
"host": "sample string 1",
"ip_address": "sample string 2"
},
{
"host": "sample string 1",
"ip_address": "sample string 2"
},
{
"host": "sample string 1",
"ip_address": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<addressList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCModel">
<Validation>
<Message>sample string 2</Message>
<isSuccess>true</isSuccess>
</Validation>
<addresses>
<address>
<host>sample string 1</host>
<ip_address>sample string 2</ip_address>
</address>
<address>
<host>sample string 1</host>
<ip_address>sample string 2</ip_address>
</address>
<address>
<host>sample string 1</host>
<ip_address>sample string 2</ip_address>
</address>
</addresses>
</addressList>