Taiwan patent search system api
TIPO is Taiwan's patent and trademark open data download website API for intellectual property searches.
import requests
# Note: The API endpoint and parameters are hypothetical as no specific API documentation was provided.
# This example assumes a search endpoint for patents.
url = "https://api.tipo.gov.tw/v1/search/patent"
params = {
"query": "semiconductor",
"lang": "zh-Hant" # Assuming Taiwan's traditional Chinese
}
try:
response = requests.get(url, params=params)
response.raise_for_status() # Raise an exception for HTTP errors
data = response.json()
print(data)
except requests.exceptions.RequestException as e:
print(f"An error occurred: {e}")Last 50 checks (10 min intervals)