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

https://github.com/fd/be-data-api

API client for data.be
https://github.com/fd/be-data-api

Last synced: over 1 year ago
JSON representation

API client for data.be

Awesome Lists containing this project

README

          

# Be::Data::Api

API client for [Data.be](http://api.data.be/)

## Installation

Add this line to your application's Gemfile:

gem 'be-data-api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install be-data-api

## Usage

```ruby
require 'be-data-api'

client = Be::Data::Api.new(API_ID, API_KEY)

client.vat_valid?("882381185")
# => true

client.vat_status("882381185")
# => #

client.vat_basic("882381185")
# => #
```

## Contributing

1. Fork it
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 new Pull Request