Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/khaliqgant/node-yipit

Node.js module for interacting with Yipits API
https://github.com/khaliqgant/node-yipit

Last synced: 19 days ago
JSON representation

Node.js module for interacting with Yipits API

Awesome Lists containing this project

README

        

[![NPM](https://nodei.co/npm/yipit.png)](https://nodei.co/npm/yipit/)

# Yipit V1 API

This hopefully makes it a little bit easier to call Yipit's V1 API

# Install #

# Example #

```js
var yipit = require("yipit");

var params = {
"key": YOUR_API_KEY_THIS_IS_REQUIRED
"division": "new-york".
"tag": "restaurants";
};

yipit.deals(params, function (error, deals){
if (!error){
console.log(deals);
}
});

```

# References #
- [Request API Key](http://yipit.com/about/api/)
- [API Documentation](http://yipit.com/about/api/documentation/)
- [HTTPRequest Documentation](https://github.com/keverw/HTTPRequest)

**Hope you enjoy! Email me at [email protected] for any questions or bugs