Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rivy/dns-2
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rivy/dns-2
- Owner: rivy
- Created: 2015-06-13T21:56:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-13T22:03:12.000Z (over 9 years ago)
- Last Synced: 2024-10-20T22:56:09.164Z (2 months ago)
- Size: 195 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```