You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,5 +211,28 @@ API_KEY
211
211
Python Version Support Policy
212
212
===================
213
213
214
-
Please see the [supported versions](https://github.com/DomainTools/python_api/raw/main/PYTHON_SUPPORT.md) document
214
+
Please see the [supported versions](https://github.com/DomainTools/python_api/raw/main/PYTHON_SUPPORT.md) document
215
215
for the DomainTools Python support policy.
216
+
217
+
218
+
Real-Time Threat Intelligence Feeds
219
+
===================
220
+
221
+
Real-Time Threat Intelligence Feeds provide data on the different stages of the domain lifecycle: from first-observed in the wild, to newly re-activated after a period of quiet. Access current feed data in real-time or retrieve historical feed data through separate APIs.
222
+
223
+
Custom parameters aside from the common `GET` Request parameters:
224
+
-`endpoint` (choose either `download` or `feed` API endpoint - default is `feed`)
225
+
```python
226
+
api = API(USERNAME, KEY)
227
+
api.nod(endpoint="feed", **kwargs)
228
+
```
229
+
-`header_authentication`: by default, we're using API Header Authentication. Set this False if you want to use API Key and Secret Authentication. Apparently, you can't use API Header Authentication for`download` endpoints so you need to set this to `False` when calling `download`API endpoints.
230
+
```python
231
+
api = API(USERNAME, KEY)
232
+
api.nod(header_authentication=False, **kwargs)
233
+
```
234
+
-`output_format`: (choose either `csv`or`jsonl`- default is`jsonl`). Cannot be used in`domainrdap` feeds. Additionally, `csv`isnot available for`download` endpoints.
"""Returns new domains as they are either discovered in domain registration information, observed by our global sensor network, or reported by trusted third parties"""
0 commit comments