https://github.com/jwoertink/godaddy-api.cr
Simple Godaddy API for crystal
https://github.com/jwoertink/godaddy-api.cr
api crystal godaddy
Last synced: 5 months ago
JSON representation
Simple Godaddy API for crystal
- Host: GitHub
- URL: https://github.com/jwoertink/godaddy-api.cr
- Owner: jwoertink
- License: mit
- Created: 2017-03-10T22:34:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-12T17:40:46.000Z (about 9 years ago)
- Last Synced: 2025-07-16T02:12:06.923Z (8 months ago)
- Topics: api, crystal, godaddy
- Language: Crystal
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Godaddy::API
A simple API wrapper for [Godaddy](https://www.godaddy.com/)
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
godaddy-api:
github: jwoertink/godaddy-api.cr
branch: master
```
## Usage
```crystal
require "godaddy-api"
Godaddy::API.configure do |c|
c.api_key = "whatever"
c.api_secret = "also_whatever"
end
client = Godaddy::API.new
results = client.get("/domains")
puts results # => []
```
## Development
TODO: Write development instructions here
## Contributing
1. Fork it ( https://github.com/jwoertink/godaddy-api.cr/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
## Contributors
- [jwoertink](https://github.com/jwoertink) Jeremy Woertink - creator, maintainer