Sample Success Responses

DNS History lookup sample response
If a request succeeds, it will return a status code in the 200 and a JSON. An example response is given below.

{
  "fqdn": "deepinfo.com",
  "dn": "deepinfo.com",
  "subdomain": "",
  "records": [
    {
      "type": "a",
      "values": [
        {
          "value": "104.21.29.10",
          "time": [
            "2021-09-24T07:18:41Z",
            "2021-08-27T07:11:54Z",
            "2021-07-30T07:18:17Z",
            "2021-06-25T08:38:46Z"
          ]
        },
        {
          "value": "172.67.171.60",
          "time": [
            "2021-09-24T07:18:41Z",
            "2021-08-27T07:11:54Z",
            "2021-07-30T07:18:17Z",
            "2021-06-25T08:38:46Z",
            "2021-05-28T08:22:11Z",
            "2021-01-30T08:39:40Z",
            "2020-12-25T08:26:45Z",
            "2020-09-25T08:32:46Z"
          ]
        },
        {
          "value": "104.21.29.10",
          "time": [
            "2021-01-30T08:39:40Z"
          ]
        },
        {
          "value": "104.31.70.204",
          "time": [
            "2020-12-25T08:26:45Z",
            "2020-09-25T08:32:46Z"
          ]
        },
        {
          "value": "104.31.71.204",
          "time": [
            "2020-12-25T08:26:45Z",
            "2020-09-25T08:32:46Z"
          ]
        },
        {
          "value": "69.172.201.218",
          "time": [
            "2020-06-28T06:10:26Z",
            "2020-06-27T08:06:26Z"
          ]
        },
        {
          "value": "192.185.32.176",
          "time": [
            "2019-12-27T07:34:11Z",
            "2019-09-29T04:43:01Z",
            "2019-09-27T08:19:25Z",
            "2019-07-02T21:45:53Z",
            "2019-07-01T23:34:46Z",
            "2019-03-29T19:08:27Z",
            "2019-03-29T07:54:38Z",
            "2018-12-28T22:23:15Z",
            "2018-09-28T17:30:29Z",
            "2018-09-28T05:57:24Z",
            "2018-07-01T22:26:50Z",
            "2018-06-30T06:07:52Z",
            "2018-03-31T23:42:10Z",
            "2018-03-30T19:51:21Z",
            "2017-12-31T16:19:15Z",
            "2017-12-29T13:42:58Z"
          ]
        }
      ]
    }
  ]
}

*Here is the response for an unregistered domain that does not have any current or historical DNS record

https://api.deepinfo.com/v1/analyze/dns-history/?domain=deepinfo.tk&type=A'
HTTP/1.1 200 OK
...
{
  "fqdn": "deepinfo.tk",
  "dn": "deepinfo.tk",
  "subdomain": "",
  "records": null
}

*Here is the answer for an FQDN that currently doesn't have an associated historical DNS record

https://api.deepinfo.com/v1/analyze/dns-history/?domain=www.deepinfo.com&type=SOA
HTTP/1.1 200 OK
...
{
  "fqdn": "www.deepinfo.com",
  "dn": "deepinfo.com",
  "subdomain": "www",
  "records": null
}