The flex API doesn't support a verbose parameter. To demonstrate, these curl commands return the same set of fields:
$ curl -s -H "X-Api-Key: $DNSDB_API_KEY" -H "Accept: application/x-ndjson" "https://api.dnsdb.info/dnsdb/v2/glob/rrnames/*.example.com.?limit=1"
{"cond":"begin"}
{"obj":{"rrname":"2.example.com.","rrtype":"HINFO"}}
{"cond":"succeeded"}
$ curl -s -H "X-Api-Key: $DNSDB_API_KEY" -H "Accept: application/x-ndjson" "https://api.dnsdb.info/dnsdb/v2/glob/rrnames/*.example.com.?limit=1&verbose=true"
{"cond":"begin"}
{"obj":{"rrname":"2.example.com.","rrtype":"HINFO"}}
{"cond":"succeeded"}
Here's the definition:
|
verbose (bool): Set to false to disable `count`, `time_first`, and |
|
`time_last` fields in output. |
The flex API doesn't support a
verboseparameter. To demonstrate, thesecurlcommands return the same set of fields:Here's the definition:
dnsdb2-python/dnsdb2/client.py
Lines 286 to 287 in 06a9122