Loading...

Global AI Regulation Tracker ๐ŸŒ

An interactive world map that tracks AI law, regulatory and policy developments around the world. Click on a region (or use the search bar) to view its profile. Other features are also available to support your research of AI regulation (including an AI governance library, country comparison tool, live AI newsfeed, export report and API access). This website is updated regularly (including new features to be added).
๐Ÿ“ง Subscribe to my newsletter to stay on top of updates: Ctrl+AI+Reg Newsletter ๐Ÿ“ง ๐Ÿ“ฐ Follow other tech law news here: Global Tech Law News Hub ๐Ÿ“ฐ ๐Ÿ€„ Chinese version (ไธญๆ–‡็‰ˆ): ๅ…จ็ƒไบบๅทฅๆ™บ่ƒฝๆณ•่ง„ๅ‘ๅฑ•ๅˆ†ๆžๅนณๅฐ ๐Ÿผ ๐ŸŒ Build and launch your own interactive map tracker: note2map.com ๐Ÿ”จ

By accessing and using this page, you agree to the notice in the footer below.


Order Report

Export the latest information on this website into one report

๐Ÿ“‹ You can order a report which will include (1) a high-level summary table containing the AI regulation status and related links of each market; and (2) more detailed schedules of each market's full profile. The report is generated based on the latest information displayed on this website at the time of your order. Licence conditions apply.

๐Ÿ’ก The report will only capture the following markets that have profiles currently available on this website (in alphabetic order): African Union, Argentina, ASEAN, Australia, Brazil, Canada, Chile, Costa Rica, Egypt, European Union, Gibraltar, Group of Seven, Hong Kong SAR, India, Indonesia, Israel, Japan, Kenya, Lebanon, Malaysia, Mexico, New Zealand, Nigeria, Norway, Pakistan, People's Republic of China, Peru, Phillipines, Republic of China (Taiwan), Russia, Saudi Arabia, Singapore, South Africa, South Korea, Switzerland, Thailand, Turkey, Ukraine, United Arab Emirates, United Kingdom, United States of America, Vietnam.

๐Ÿ” See sample report below. For demo purposes, this sample only shows a limited selection of markets. The full report will have approximately 200+ pages.


Payment

AI Regulation Report

USD 60.00

Price exclusive of applicable taxes.

When you click 'Order', you will be redirected to a Stripe payment page to complete the payment of an one-off licence fee. Payment will be faciliated and secured by Stripe in accordance with Stripe's own terms and policies.

If payment is successful, you will be redirected to a page containing the download link to the Report. Please ensure you download the report before you close that page - the download link won't be recoverable after that page is closed.

By proceeding to checkout, you hereby acknowledge and accept the following licence agreement which apply to the Report: Licence Agreement.

Note that licence fee only applies to the one report which you paid for. If you want to order subsequent reports, you will need to pay the licence fee again. We reserve the right to vary the licence fee at any time.

If you have questions or issues, please email techierayproducts@gmail.com.

Last updated:
Export to Report

Submit suggestions, updates or corrections to this form

Click on a region

Choose two countries and click the "Compare" button to analyse the similarities and differences in AI policies and regulations between the two selected countries. The analysis is produced in real time by generative AI based on the information in this tracker.

The analysis is only intended to be a starting point for your own independent research - due to the limitations of generative AI, the analysis might not always be accurate.




Check out the latest AI legal, regulation and policy news around the world, curated by an algorithm from various sources published within the past 5 days.

Links to external sources are provided for convenience only, and we do not claim any copyright to these external sources. We do not warrant the accuracy, quality, safety, relevance, legality or fitness for purpose of the curated external sources.


Want more tech law news? Check out my Global Tech Law Newsfeed which curates the latest news relevant to various technology law topics such as AI, blockchain, metaverse, quantum, privacy, online safety, social media, autonomous vehicles, intellectual property and cybersecurity (free to use, no login required).

๐Ÿ”Œ Plug into the tracker

This API service enables real-time programmatic access to the global AI regulation news data behind this tracker.

Search and retrieve the news updates for any given date and/or country under the following categories: Latest Developments, Sector Developments and Bilateral/Multilateral Developments.

Use case ideas:

  • Starting a newsletter of AI regulation updates within your organisation
  • Creating your own private chatbot or news alert on AI regulation
  • Building an educational website or public repository on AI regulation

Licence terms apply. See below.


โšก Usage

Implementation via:

          
#Setup --- pip install techieray-ai-reg-tracker-api

#Import
from techieray_ai_reg_tracker_api import GlobalAIRegulationTrackerClient

#Initialise API
api_key = "###INSERT API KEY###"
client = GlobalAIRegulationTrackerClient(api_key)

#Search updates globally on a particular date
#example - get global updates dated 18 March 2025
response1 = client.call(market = "global", target_news = "", target_date ="2025-03-18")

#Search updates of a given category in a given country 
#example - get 'Latest Developments' updates ("latest_news") in Australia ("AU") 
response2 = client.call(market = "AU", target_news = "latest_news", target_date = "")

#Search updates in a given country on a given date
#example - get updates on China ("CN") dated 18 December 2024 
response3 = client.call(market = "CN", target_news = "", target_date="2024-12-18")

#Search updates of a given category in a given country on a given date 
#example - get 'Latest Developments' ("latest_news") updates in the United States ("US") dated 3 October 2024 
response4 = client.call(market = "US", target_news = "latest_news", target_date = "2024-10-03")

print(response1)
print(response2)
print(response3)
print(response4)
          
        
          
//Setup --- npm i techieray-ai-reg-tracker-api

//Import
const { GlobalAIRegulationTrackerClient } = require('techieray-ai-reg-tracker-api')

//Initialise API
const apiKey = "###INSERT API KEY###"
const client = new GlobalAIRegulationTrackerClient(apiKey)

//Search updates globally on a particular date
//example - get global updates dated 18 March 2025
const response1 = client.call(market = "global", targetNews = "", targetDate ="2025-03-18")

//Search updates of a given category in a given country 
//example - get 'Latest Developments' updates ("latest_news") in Australia ("AU") 
const response2 = client.call(market = "AU", targetNews = "latest_news", targetDate = "")

//Search updates in a given country on a given date
//example - get updates on China ("CN") dated 18 December 2024 
const response3 = client.call(market = "CN", targetNews = "", targetDate="2024-12-18")

//Search updates of a given category in a given country on a given date 
//example - get 'Latest Developments' ("latest_news") updates in the United States ("US") dated 3 October 2024 
const response4 = client.call(market = "US", targetNews = "latest_news", targetDate = "2024-10-03")

console.log(response1)
console.log(response2)
console.log(response3)
console.log(response4)
            
        
          
# Example 1: Search global updates on a particular date (2025-03-18)

curl -X POST \
  'https://globalairegtrackerapi-j66zxhj6dq-uc.a.run.app' \
  -H 'Content-Type: application/json' \
  -d '{
    "countryCode": "global",
    "targetNews": "",
    "targetDate": "2025-03-18",
    "apiKey": "###INSERT API KEY###"
  }'

# Example 2: Search 'Latest Developments' updates in Australia ("AU")

curl -X POST \
  'https://globalairegtrackerapi-j66zxhj6dq-uc.a.run.app' \
  -H 'Content-Type: application/json' \
  -d '{
    "countryCode": "AU",
    "targetNews": "latest_news",
    "targetDate": "",
    "apiKey": "###INSERT API KEY###"
  }'

# Example 3: Search updates in China ("CN") dated 2024-12-18

curl -X POST \
  'https://globalairegtrackerapi-j66zxhj6dq-uc.a.run.app' \
  -H 'Content-Type: application/json' \
  -d '{
    "countryCode": "CN",
    "targetNews": "",
    "targetDate": "2024-12-18",
    "apiKey": "###INSERT API KEY###"
  }'

# Example 4: Search 'Latest Developments' updates in the United States ("US") dated 2024-10-03

curl -X POST \
  'https://globalairegtrackerapi-j66zxhj6dq-uc.a.run.app' \
  -H 'Content-Type: application/json' \
  -d '{
    "countryCode": "US",
    "targetNews": "latest_news",
    "targetDate": "2024-10-03",
    "apiKey": "###INSERT API KEY###"
  }'
          
        

๐Ÿ”‘ API key

To access this API service, you will need to order a valid API key by purchasing one of the below subscription plans.

When you click 'Subscribe', you will be redirected to a Stripe payment page to complete the payment of the subscription plan. Payment will be faciliated and secured by Stripe in accordance with Stripe's own terms and policies.

If payment is successful, you will be redirected to a page containing your unique API key.

1"Personal use" means use by an individual for non-commercial, private purposes.

2"Commercial use" means use that is intended to benefit external parties (e.g. customers, clients, the public) with the primary goal of generating revenue, profit, or other commercial advantages.

3"No public distribution of API data" means that the data returned by API must not be distributed externally, whether for commercial or non-commercial purposes. "Public distribution of API data only for public research use" means that the data returned by API may be distributed externally only for the purposes of a not-for-profit research project or public resource.

4"Email FAQ support" means replies to your reasonable queries via email within a reasonable timeframe, but does not include service levels, service credits, fixes, upgrades or other developer support. "No support" means there is no obligation on us to reply to your queries (but subject to our discretion).

5"Internal organisational use" means use within an organisation solely for its own internal operations and not for commercial gain from external parties.

Priced in USD. Price exclusive of applicable taxes.


๐Ÿ“„ Licence terms

Terms apply to your use of the API, available here: API Terms of Service.


๐Ÿ›‘ Cancel subscription

If you wish to cancel an existing subscription, please complete this Cancellation Form. Cancellation will take effect at the end of your current billing cycle.


โœ‰๏ธ Contact & Feedback

If you have questions, please email techierayproducts@gmail.com.

To provide any feedback or report issues, complete this Feedback Form.

Coming soon!