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

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

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