Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get information about listed ip-addresses. A POST request is required for this to work (officially). However, one (unsupported) command does the same: /3.0/dnsbl/request/ip/<address>

Parameters

ParameterDescription
ipAddress list (arrays allowed)

...

As you can see, one of the hosts above are also marked as deleted by the deleted-string. This means that is has been removed from the DNS service and therefore won't shop up in a DNS request. This kind of flags is used to show - in removal tools - that the host has been listed but is now removed.

When the API find no blacklisted hosts

As of APIv3, exceptions are thrown in the response interface if nothing is found as listed. This should make it easier to detect errors together with unlisted addresses, instead of looking for empty response arrays. This is what's thrown, when this occurs.

Code Block
languagejs
titleExceptions in API
{
    "response": [],
    "errors": {
        "code": "404",
        "success": "",
        "faultstring": "Nothing found as listed"
    }
}