REST web api is not a new toy today. One of public service that user RESTful Architecture is twitter. On Zend Framework, we can implement RESTful easily. Just make action that related with HTTP method used.
getAction() => handle request with HTTP GET postAction() => handle request with HTTP POST putAction() => handle request with HTTP PUT deleteAction() => handle request with HTTP DELETE
For more details, please see these steps