CCM API

CCM Open API - Fast & Free

API for CCM Product

Parameter

Name Description
keyword (string) Filter result by keyword with full-text search. Separate keyword by comma(,). For example, "Glyphosate,Glycine"
type (string) Filter result by type. Separate type by comma(,). For example, "R,N,I,E,C,T"
type = R(Report), N(Newsletter), I(Market data), E(Release), C(Content byte), T(Trade analsysis)
year (string) Filter result by year. Separate year by comma(,). For example, "2013,2012"
sort (string) Result will order by sort. For example, "ta"
sort = {0}{1}, {0} = t(Title), r(Relevance), p(Publish date), {1} = a(asc), d(desc)
page (int) Current page.
pageSize (int) Page size.

Response (JSON format)

  • {
  • "Keyword": "Search keyword",
  • "List": [{
  • "Content": "Content",
  • "Description": "Description",
  • "Id": "ID",
  • "Keywords": "Keywords, split by ','",
  • "Logo": "Logo Class",
  • 09 "PublishDate": "Publish date",
  • "Source": "Source",
  • "TimeSpan": "Time span",
  • "Title": "Title",
  • "Type": "Type",
  • "TypeName": "Type name",
  • "URL": "URL",
  • ...
  • },
  • ...
  • ],
  • "Pager": {
  • "Current": Current page,
  • "Total": Total pages,
  • "TotalRecord": Total records
  • },
  • "Statistics": {
  • "Type": {
  • "N": Count of type 'N',
  • "R": 100,
  • "T": 100,
  • "E": 100,
  • "I": 100,
  • "C": 100,
  • ...
  • },
  • "Year": {
  • "Y2014": Count of '2014',
  • "Y2013": 100,
  • "Y2012": 100,
  • ...
  • }
  • }
  • }

Hello Word

  • <!DOCTYPE html>
  • <html>
  • <head>
  • <title>Hello world</title>
  • <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
  • <script type="text/javascript">
  • $(function(){
  • $.ajax({
  • url: http://api.cnchemicals.com/Product/?apikey=Your api key,
  • data: {Your parameter},
  • dataType: "jsonp",
  • crossDomain: true,
  • jsonp: "callback",
  • jsonpCallback: "jsoncallback",
  • success: function(result) {
  • // Bind your UI
  • }
  • });
  • });
  • </script>
  • </head>
  • <body>
  • <!-- Your UI -->
  • </body>
  • </html>
Request API Credentials