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
- Host: GitHub
- URL: https://github.com/fd/be-data-api
- Owner: fd
- License: mit
- Created: 2012-11-09T14:18:12.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-11-09T14:19:37.000Z (over 13 years ago)
- Last Synced: 2025-02-02T07:19:21.475Z (over 1 year ago)
- Language: Ruby
- Size: 109 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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