Start Building with QSearch

Social network analysis is getting awareness recently. You can use social network data for marketing research, marketing performance measurement, social crisis management or ad optimization. QSearch provide an API to allow each developer to leverage the insight on Facebook. You can integrate your application with QSearch API for better recommendation strategy or service.

1. Get Project Key

Create a new project. Create Project

2. Make a HTTP request

Here is a sample for QSearch Trend Time Series API in python.


    #-*- coding: UTF-8 -*-
    #/usr/bin/env python

    import urllib
    import json
    from urllib2 import Request, urlopen
    values = {
        "key" : "7680adac5f9077b89d214dcee4a7f9e6e0a984f83f7824e",
        "q": "water security",
        "nation": "Global",
        "st": "2016-9-7",
        "et": "2016-10-7"
    }

    url = "http://api.qsearch.cc/api/trend/v1/series?"
    url_values = urllib.urlencode(values)
    response_body = urlopen(url+url_values).read()
                        

QSearch aims to provide a stable and reliable service.