I would highly recommend ActiveResource for your requirement. My experience with it has been really good. Provided that the API you intend to consume is really REST, I don't think there is any cleaner design for consuming data through REST API. From it's README,
Active Resource
Active Resource (ARes)
connects business objects and
Representational State Transfer (REST)
web services. It implements
object-relational mapping for REST web
services to provide transparent
proxying capabilities between a client
(ActiveResource) and a RESTful service
(which is provided by Simply RESTful
routing in
ActionController::Resources).
Philosophy
Active Resource attempts to
provide a coherent wrapper
object-relational mapping for REST web
services. It follows the same
philosophy as Active Record, in that
one of its prime aims is to reduce the
amount of code needed to map to these
resources. This is made possible by
relying on a number of code- and
protocol-based conventions that make
it easy for Active Resource to infer
complex relations and structures.
These conventions are outlined in
detail in the documentation for
ActiveResource::Base.
Overview
Model classes are mapped to
remote REST resources by Active
Resource much the same way Active
Record maps model classes to database
tables. When a request is made to a
remote resource, a REST XML request is
generated, transmitted, and the result
received and serialized into a usable
Ruby object.
Configuration and Usage
Putting Active
Resource to use is very similar to
Active Record. It’s as simple as
creating a model class that inherits
from ActiveResource::Base and
providing a site class variable to it:
class Person < ActiveResource::Base
self.site = "http://api.people.com:3000/"
end
Now
the Person class is REST enabled and
can invoke REST services very
similarly to how Active Record invokes
life cycle methods that operate
against a persistent store.
# Find a person with id = 1
ryan = Person.find(1)
Person.exists?(1) # => true
As you can see, the methods are
quite similar to Active Record’s
methods for dealing with database
records. But rather than dealing
directly with a database record,
you’re dealing with HTTP resources
(which may or may not be database
records).
Read more here...