# StyleApi.FeedApi

All URIs are relative to *http://api-prod.stylelens.io*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getFeeds**](FeedApi.md#getFeeds) | **GET** /feeds | 


<a name="getFeeds"></a>
# **getFeeds**
> GetFeedResponse getFeeds(opts)



Returns Main Feeds

### Example
```javascript
var StyleApi = require('style_api');

var apiInstance = new StyleApi.FeedApi();

var opts = { 
  'offset': 56, // Number | 
  'limit': 56 // Number | 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getFeeds(opts, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **offset** | **Number**|  | [optional] 
 **limit** | **Number**|  | [optional] 

### Return type

[**GetFeedResponse**](GetFeedResponse.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

