An open API service indexing awesome lists of open source software.

https://github.com/mathsgod/webnic-client-php


https://github.com/mathsgod/webnic-client-php

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# WebNIC Client

[WebNIC](https://www.webnic.cc/) API Client for PHP

# install
```
composer require mathsgod/webnic-client-php
```

# usage

## Auth
```php
use WebNIC\Client;

$client = new Client('your-client-id', 'your-secret');

```

## DNS

### Check Whois
```php

print_r($client->domain()->whois('example.com'));

```