Hi. You should add the creation year of the supercell games account for example brawl stars because it worth much more and it would be easier for the buyers to search for the account and also maybe the sellers can sell better. I checked the api-s I dont really know how those works so sry for that but I didnt find the official bs api but I found brawltimeninja-s which is quick i guess maybe need proxy for more quick respone: api_url = f"https://brawltime.ninja/api/player.byTagExtra?input={json_input}" if need here is a half python program if that helps: json_input = urllib.parse.quote(f'{{"json":"{bs_id}"}}') api_url = f"https://brawltime.ninja/api/player.byTagExtra?input={json_input}" try: print(f"[{index}] API download: {api_url}") api_response = requests.get(api_url, timeout=15) if api_response.status_code != 200: print(f"[{index}] Error: HTTP {api_response.status_code} status from API call") else: try: api_data = api_response.json() # Check if the JSON response contains the necessary data if "result" in api_data and "data" in api_data["result"] and "json" in api_data["result"]["data"]: player_data = api_data["result"]["data"]["json"] if isinstance(player_data, dict) and "accountCreationYear" in player_data: creation_year = player_data["accountCreationYear"] print(f"[{index}] Creation year found: {creation_year}") else: print(f"[{index}] Error: Creation year not found in player data") else: print(f"[{index}] Error: Missing data in API response") as i said before without proxy maybe it doesnt give much response. Thank you for reading my suggestion and I hope this will be added!