https://github.com/hrbrmstr/whoisxmlapi
:grey_question: R package to interface with the WhoisXMLAPI.com service
https://github.com/hrbrmstr/whoisxmlapi
r r-cyber rstats whoisxmlapi
Last synced: 8 days ago
JSON representation
:grey_question: R package to interface with the WhoisXMLAPI.com service
- Host: GitHub
- URL: https://github.com/hrbrmstr/whoisxmlapi
- Owner: hrbrmstr
- License: other
- Created: 2015-08-09T00:10:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-02-25T16:05:49.000Z (over 7 years ago)
- Last Synced: 2025-01-16T02:47:50.317Z (over 1 year ago)
- Topics: r, r-cyber, rstats, whoisxmlapi
- Language: R
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: rmarkdown::github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "##",
fig.path = "README-",
message = FALSE,
warning = FALSE,
fig.retina = 2
)
options(width=120)
```
# whoisxmlapi
Query 'IP' and Domain Information from 'WhoisXMLAPI'
## Description
The 'WhoisXMLAPI' () service provides
current and historical metadata on 'IP' addresses and 'WHOIS' records
for internet domain names. Methods are provided to query and process
query results.
## What's Inside the Tin?
The following functions are implemented:
- `account_balance`: Query the account balance
- `whois`: Retrieve WHOIS details for one or more domain names
- `whoisxmlapi_key`: Get or set WHOISXMLAPI_KEY
## Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/whoisxmlapi")
```
## Usage
```{r}
library(whoisxmlapi)
# current verison
packageVersion("whoisxmlapi")
```
```{r}
dplyr::glimpse(account_balance())
```
## `whoisxmlapi` Metrics
```{r cloc, echo=FALSE}
cloc::cloc_pkg_md()
```
### 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.