To get content in XML Format
GET http://api.offergrid.com/content.xml/

To get content in JSON Format
GET http://api.offergrid.com/content.json/


Common query parameters for both Online Products & Local Offers Content

  • limit : Specify the number of items you want back in the response. Default is 1000
  • prov: If you have a choice of providers, you can specify in a comma separated string.
  • For e.g. providers can be prov=mydala,indiaplaza,healthkart etc.

  • addkeys: If you want certain words / characters to be present in the output , specify those in this parameter
  • For e.g. addkeys = ‘Volvo’.

  • cat: You can specify the choice of categories in this parameter using a comma separated string
  • For e.g. cat = ‘travel,spa,dining’.

  • orderby: This query parameter orders the response by discount, with the highest discount first. By default, it is sorted with the newest product on top.
  • For e.g. orderby=disc. Available value is only disc as of now.

  • drange: For discount filtering, you can specify the lower and upper discount levels in a comma separated format
  • For e.g. drange=20,50

  • vrange: For Value based filtering, you can specify the lower and upper value levels in a comma separated format
  • For e.g. vrange=1000,1500

Query Parameters for Local Offers Content

  • city: For city level filtering, you can specify the names of the cities in this query parameter.
  • For e.g. city=Hyderabad. You can get the list of cities supported using the fetch queries described in the List API section.

  • proximity: For purely local offers, you can specify the lat, long, and radius in this string in a comma separated format
  • For e.g. proximity=12.9250,77.5863,1

  • suburb: For suburb level filtering, you can specify the names of the suburbs in this query parameter.
  • For e.g. suburb=Jayanagar. You can get the list of suburbs supported using the fetch queries described in the List API section. This parameter must be used in conjunction with the city parameter for which the suburb is requested.


    It is assumed that the API Key is passed in the header as mentioned above

  • Get 20 Local Offers in Pune
    http://api.offergrid.com/content.xml?limit=20&city=Pune
  • Get 10 Travel & Dining related products & offers
    http://api.offergrid.com/content.xml?limit=10&cat=travel,dining
  • Get 10 Local Offers from Koramangala
    http://api.offergrid.com/content.xml?limit=10&city=Bangalore&suburb=Koramangala
  • Get 5 Offers for Startups and Entrepreneurs
    http://api.offergrid.com/content.xml?limit=5&cat=startup
  • Get only health and fitness products available nationally
    http://api.offergrid.com/content.xml?cat=fitness,health
  • Get products only from Healthkart
    http://api.offergrid.com/content.xml?prov=healthkart
  • Get products with the word wrist band
    http://api.offergrid.com/content.xml?addkeys=wristband
  • and… many more combinations are possible for you to fetch the right product.