https://github.com/hrbrmstr/domaintools
R API interface to the DomainTools API
https://github.com/hrbrmstr/domaintools
domaintools domaintools-api r r-cyber rstats
Last synced: 8 months ago
JSON representation
R API interface to the DomainTools API
- Host: GitHub
- URL: https://github.com/hrbrmstr/domaintools
- Owner: hrbrmstr
- License: other
- Created: 2015-08-09T19:01:55.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-26T06:28:19.000Z (almost 11 years ago)
- Last Synced: 2025-06-04T21:45:16.618Z (about 1 year ago)
- Topics: domaintools, domaintools-api, r, r-cyber, rstats
- Language: R
- Size: 153 KB
- Stars: 8
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output:
md_document:
variant: markdown_github
---
### domaintools - an R API interface to the DomainTools API
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
The following functions are implemented:
- `domaintools_api_key`: Get or set DOMAINTOOLS_API_KEY value
- `domaintools_username`: Get or set DOMAINTOOLS_API_USERNAME value
- `domain_profile`: Domain Profile
- `hosting_history`: Hosting History
- `parsed_whois`: Parsed Whois
- `reverse_ip`: Reverse IP
- `reverse_ns`: Reverse Nameserver
- `shared_ips`: Shared IPs
- `whois`: Whois Lookup
- `whois_history`: Whois History
### News
- Version 0.0.1.9000 : Bugfixes contributed by David Severski
- Version 0.0.0.9000 released
### Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/domaintools")
```
```{r echo=FALSE, message=FALSE, warning=FALSE, error=FALSE}
options(width=120)
```
### Usage
```{r}
library(domaintools)
# current verison
packageVersion("domaintools")
whois("domaintools.com")
whois_history("domaintools.com")
domain_profile("domaintools.com")
hosting_history("domaintools.com")
```
### Test Results
```{r}
library(domaintools)
library(testthat)
date()
test_dir("tests/")
```
### Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md).
By participating in this project you agree to abide by its terms.