Skip to main content

China Trademark Database Search API via CPTMA.COM

CPTMA.COM Official Free China Trademarks Database Search API v1.0

这个项目是 https://CPTMA.com 官方免费中国商标数据库查询API,采用PHP语言,提交查询关键词,返回近似商标查询结果。 查询结果以JSON格式输出。

This project is https://CPTMA.com official free Chinese trademark database search API, using PHP language. Apps submit search a keyword, and the server return similar trademarks query results according to China Trademarks Office Database. The query results are output in JSON format.

Get API Source Code from Github Here.
https://github.com/AbbyChiang/CPTMA.COM/


/**
* Configure tmsearch object
* Copyright http://cptma.com
* By Ray
*/
$tmsearch_obj_config = array
(
'name' => array
(
'required' => false,
'prefix' => '[Applicant Name]'
),
'reg_no' => array
(
'required' => false,
'prefix' => '[Registration Number]'
),
/**
* Configure keyword field
* The prefix is prepended to the inputting keyword
*/
'keyword' => array
(
'visible' => true,
'required' => true,
'prefix' => '[Keyword Search]'
),

/**
* Configure ReCaptcha protection
* Requires an API v2 key pair to function
*
* @see https://developers.google.com/recaptcha
*/
'recaptcha' => array
(
'site_key' => '',
'secret_key' => ''
),

/**
* Configure labels and messages
* Can be used to customize or translate items
*/
'translate' => array
(
'labels' => array
(
'name' => 'Applicant Name',
'keyword' => 'Keyword',
'reg_no' => 'Registration Number',
'recaptcha' => 'ReCaptcha'
),
'errors' => array
(
'code' => '0',
'required' => '%s is required',
'invalid' => '%s is invalid'
),
'messages' => array
(
'error' => 'We have encountered an unknown error, please try again.',
'success' => 'The retrieval was successful and the result will be sent to your mailbox shortly.'
)
)
);

/**
* Load tmsearch class and its dependencies
* Create new class object with given configuration
*/
require __DIR__ . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR . 'tmsearch-obj.php';
$tmsearch_obj = new TMSearch_Obj($tmsearch_obj_config);

?>
<?php

Comments