Google translate API v2 is pure GET style and they only have one url (or one resource) at https://www.googleapis.com/language/translate/v2
so basically all variants of the tool will be called like this https://www.googleapis.com/language/translate/v2?parameters
They claim that service to be RESTful (http://code.google.com/apis/language/translate/v2/using_rest.html) because it is based on a simple GET url.
But strictly speaking is it actually a RESTful architecture?
Because having a service based on a simple GET url is not analogous to being RESTful right?