Random Facts API - Ruby Gem
Random Facts is a simple tool for getting random facts. It returns a random fact.
Installation
Add this line to your application's Gemfile:
gem 'apiverve_randomfacts'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install apiverve_randomfacts
Getting Started
Get your API key at APIVerve
Basic Usage
require 'apiverve_randomfacts'
# Initialize the client
client = APIVerve::Randomfacts::Client.new(api_key: "YOUR_API_KEY")
# Make a request
response = client.execute
# Print the response
puts response
Error Handling
begin
response = client.execute({ })
puts response["data"]
rescue APIVerve::Randomfacts::ValidationError => e
puts "Validation error: #{e.errors.join(', ')}"
rescue APIVerve::Randomfacts::APIError => e
puts "API error: #{e.}"
puts "Status code: #{e.status_code}"
end
Debug Mode
# Enable debug logging
client = APIVerve::Randomfacts::Client.new(
api_key: "YOUR_API_KEY",
debug: true
)
Example Response
{
"status": "ok",
"error": null,
"data": {
"fact": "Rhinoceros have 3 toes on each foot"
}
}
Documentation
For more information, visit the API Documentation.
Support
- Website: https://apiverve.com/marketplace/randomfacts?utm_source=ruby&utm_medium=readme
- Email: hello@apiverve.com
License
This gem is available under the MIT License.