Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rivy/dns
DNS info
https://github.com/rivy/dns
Last synced: 28 days ago
JSON representation
DNS info
- Host: GitHub
- URL: https://github.com/rivy/dns
- Owner: rivy
- Created: 2015-04-29T17:21:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-16T02:43:00.000Z (over 9 years ago)
- Last Synced: 2024-10-14T21:04:37.737Z (2 months ago)
- Size: 285 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DNS
## [DNSimple API](https://developer.dnsimple.com/domains)
### Examples
#### [List domains](https://developer.dnsimple.com/domains/#list)
```
set DNSimple_id=...
set DNSimple_token=...
curl --insecure -H "X-DNSimple-Token: %DNSimple_id%:%DNSimple_token%" -H "Accept: application/json" https://api.dnsimple.com/v1/domains
```#### [Get a domain](https://developer.dnsimple.com/domains/#get)
```
set DNSimple_id=...
set DNSimple_token=...
curl --insecure -H "X-DNSimple-Token: %DNSimple_id%:%DNSimple_token%" -H "Accept: application/json" https://api.dnsimple.com/v1/domains/northernlogic.com```
#### [List records for a domain](https://developer.dnsimple.com/domains/records/#list)
```
set DNSimple_id=...
set DNSimple_token=...
curl --insecure -H "X-DNSimple-Token: %DNSimple_id%:%DNSimple_token%" -H "Accept: application/json" https://api.dnsimple.com/v1/domains/northernlogic.com/records```