Compliment Generator API - Ruby Gem
Compliment Generator creates unique, heartfelt compliments using template-based generation with extensive word banks. Perfect for apps, chatbots, or spreading positivity.
Installation
Add this line to your application's Gemfile:
gem 'apiverve_compliments'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install apiverve_compliments
Getting Started
Get your API key at APIVerve
Basic Usage
require 'apiverve_compliments'
# Initialize the client
client = APIVerve::Compliments::Client.new(api_key: "YOUR_API_KEY")
# Make a request
response = client.execute({ adult: })
# Print the response
puts response
Error Handling
begin
response = client.execute({ adult: })
puts response["data"]
rescue APIVerve::Compliments::ValidationError => e
puts "Validation error: #{e.errors.join(', ')}"
rescue APIVerve::Compliments::APIError => e
puts "API error: #{e.}"
puts "Status code: #{e.status_code}"
end
Debug Mode
# Enable debug logging
client = APIVerve::Compliments::Client.new(
api_key: "YOUR_API_KEY",
debug: true
)
Example Response
{
"status": "ok",
"error": null,
"data": {
"compliment": "Your graceful professionalism is an asset to everyone."
}
}
Documentation
For more information, visit the API Documentation.
Support
- Website: https://apiverve.com/marketplace/compliments?utm_source=ruby&utm_medium=readme
- Email: hello@apiverve.com
License
This gem is available under the MIT License.