From 5ac5643cd2a15dd370da5369bd49c8437274d435 Mon Sep 17 00:00:00 2001 From: "yves.gugger" Date: Mon, 8 Dec 2025 09:16:33 +0100 Subject: [PATCH] feat: add TLD price export/import/seed scripts - export_tld_prices.py: Export DB prices to JSON - import_tld_prices.py: Import prices from JSON - seed_tld_prices.py: Initial scrape from Porkbun API - tld_prices_export.json: Current price data (886 TLDs) Usage: python scripts/seed_tld_prices.py # Initial scrape python scripts/export_tld_prices.py # Backup to JSON python scripts/import_tld_prices.py # Restore from JSON --- backend/scripts/export_tld_prices.py | 54 + backend/scripts/import_tld_prices.py | 62 + backend/scripts/seed_tld_prices.py | 46 + backend/scripts/tld_prices_export.json | 8866 ++++++++++++++++++++++++ 4 files changed, 9028 insertions(+) create mode 100644 backend/scripts/export_tld_prices.py create mode 100644 backend/scripts/import_tld_prices.py create mode 100644 backend/scripts/seed_tld_prices.py create mode 100644 backend/scripts/tld_prices_export.json diff --git a/backend/scripts/export_tld_prices.py b/backend/scripts/export_tld_prices.py new file mode 100644 index 0000000..0eaa4c4 --- /dev/null +++ b/backend/scripts/export_tld_prices.py @@ -0,0 +1,54 @@ +#!/usr/bin/env python3 +"""Export TLD prices from database to JSON file for backup/versioning.""" +import asyncio +import json +import sys +from datetime import datetime +from pathlib import Path + +# Add parent directory to path +sys.path.insert(0, str(Path(__file__).parent.parent)) + +from sqlalchemy import select +from app.database import AsyncSessionLocal, init_db +from app.models.tld_price import TLDPrice + + +async def export_prices(): + """Export all TLD prices to JSON.""" + await init_db() + + async with AsyncSessionLocal() as db: + result = await db.execute(select(TLDPrice).order_by(TLDPrice.tld)) + prices = result.scalars().all() + + data = { + "exported_at": datetime.utcnow().isoformat(), + "total_records": len(prices), + "prices": [ + { + "tld": p.tld, + "registrar": p.registrar, + "registration_price": p.registration_price, + "renewal_price": p.renewal_price, + "transfer_price": p.transfer_price, + "currency": p.currency, + "promo_price": p.promo_price, + "recorded_at": p.recorded_at.isoformat() if p.recorded_at else None, + } + for p in prices + ] + } + + # Save to file + output_path = Path(__file__).parent / "tld_prices_export.json" + with open(output_path, "w") as f: + json.dump(data, f, indent=2) + + print(f"Exported {len(prices)} TLD prices to {output_path}") + return output_path + + +if __name__ == "__main__": + asyncio.run(export_prices()) + diff --git a/backend/scripts/import_tld_prices.py b/backend/scripts/import_tld_prices.py new file mode 100644 index 0000000..2f243ba --- /dev/null +++ b/backend/scripts/import_tld_prices.py @@ -0,0 +1,62 @@ +#!/usr/bin/env python3 +"""Import TLD prices from JSON file to database.""" +import asyncio +import json +import sys +from datetime import datetime +from pathlib import Path + +# Add parent directory to path +sys.path.insert(0, str(Path(__file__).parent.parent)) + +from app.database import AsyncSessionLocal, init_db +from app.models.tld_price import TLDPrice + + +async def import_prices(json_path: str = None): + """Import TLD prices from JSON.""" + await init_db() + + # Default path + if json_path is None: + json_path = Path(__file__).parent / "tld_prices_export.json" + else: + json_path = Path(json_path) + + if not json_path.exists(): + print(f"File not found: {json_path}") + return + + with open(json_path) as f: + data = json.load(f) + + prices = data.get("prices", []) + print(f"Importing {len(prices)} TLD prices from {json_path}") + + async with AsyncSessionLocal() as db: + imported = 0 + for p in prices: + try: + price = TLDPrice( + tld=p["tld"], + registrar=p["registrar"], + registration_price=p["registration_price"], + renewal_price=p.get("renewal_price"), + transfer_price=p.get("transfer_price"), + currency=p.get("currency", "USD"), + promo_price=p.get("promo_price"), + recorded_at=datetime.fromisoformat(p["recorded_at"]) if p.get("recorded_at") else datetime.utcnow(), + ) + db.add(price) + imported += 1 + except Exception as e: + print(f"Error importing {p.get('tld')}: {e}") + + await db.commit() + print(f"Successfully imported {imported} TLD prices") + + +if __name__ == "__main__": + json_file = sys.argv[1] if len(sys.argv) > 1 else None + asyncio.run(import_prices(json_file)) + diff --git a/backend/scripts/seed_tld_prices.py b/backend/scripts/seed_tld_prices.py new file mode 100644 index 0000000..8e9134f --- /dev/null +++ b/backend/scripts/seed_tld_prices.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +"""Seed TLD prices by running a scrape from Porkbun API.""" +import asyncio +import sys +from pathlib import Path + +# Add parent directory to path +sys.path.insert(0, str(Path(__file__).parent.parent)) + +from app.database import AsyncSessionLocal, init_db +from app.services.tld_scraper.aggregator import tld_aggregator + + +async def seed_prices(): + """Run initial TLD price scrape.""" + print("Initializing database...") + await init_db() + + print("Starting TLD price scrape from Porkbun API...") + print("This may take 15-30 seconds...") + + async with AsyncSessionLocal() as db: + result = await tld_aggregator.run_scrape(db) + + print() + print("=" * 50) + print("Seed Results:") + print(f" Status: {result.status}") + print(f" TLDs scraped: {result.tlds_scraped}") + print(f" Prices saved: {result.prices_saved}") + print(f" Sources: {result.sources_succeeded}/{result.sources_attempted}") + + if result.errors: + print(f" Errors: {result.errors}") + + print("=" * 50) + + if result.status == "success": + print("\n✅ TLD prices seeded successfully!") + else: + print("\n⚠️ Seed completed with warnings") + + +if __name__ == "__main__": + asyncio.run(seed_prices()) + diff --git a/backend/scripts/tld_prices_export.json b/backend/scripts/tld_prices_export.json new file mode 100644 index 0000000..9b251de --- /dev/null +++ b/backend/scripts/tld_prices_export.json @@ -0,0 +1,8866 @@ +{ + "exported_at": "2025-12-08T08:16:17.000150", + "total_records": 886, + "prices": [ + { + "tld": "0z", + "registrar": "porkbun", + "registration_price": 42.52, + "renewal_price": 16.77, + "transfer_price": 16.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "0zebra", + "registrar": "porkbun", + "registration_price": 3.63, + "renewal_price": 8.2, + "transfer_price": 8.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "0zero", + "registrar": "porkbun", + "registration_price": 4.77, + "renewal_price": 9.34, + "transfer_price": 9.34, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "0zone", + "registrar": "porkbun", + "registration_price": 5.91, + "renewal_price": 10.48, + "transfer_price": 10.48, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "0zoo", + "registrar": "porkbun", + "registration_price": 7.05, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "1", + "registrar": "porkbun", + "registration_price": 1.34, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "247", + "registrar": "porkbun", + "registration_price": 103.3, + "renewal_price": 103.3, + "transfer_price": 103.3, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "35", + "registrar": "porkbun", + "registration_price": 21.93, + "renewal_price": 21.93, + "transfer_price": 21.93, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "3dom", + "registrar": "porkbun", + "registration_price": 5.45, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "420247", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "49", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 51.8, + "transfer_price": 51.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "4sale", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "666888", + "registrar": "porkbun", + "registration_price": 27.09, + "renewal_price": 27.09, + "transfer_price": 27.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "77", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "80proof", + "registrar": "porkbun", + "registration_price": 2.47, + "renewal_price": 2.47, + "transfer_price": 2.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "8kb", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "a2", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "abogado", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "aby", + "registrar": "porkbun", + "registration_price": 30.18, + "renewal_price": 30.18, + "transfer_price": 30.18, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ac", + "registrar": "porkbun", + "registration_price": 26.06, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ac.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "academy", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 37.59, + "transfer_price": 37.59, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "accountant", + "registrar": "porkbun", + "registration_price": 21.09, + "renewal_price": 21.09, + "transfer_price": 21.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "accountants", + "registrar": "porkbun", + "registration_price": 23.17, + "renewal_price": 93.2, + "transfer_price": 93.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "actor", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "adult", + "registrar": "porkbun", + "registration_price": 98.35, + "renewal_price": 98.35, + "transfer_price": 98.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ae.org", + "registrar": "porkbun", + "registration_price": 15.76, + "renewal_price": 15.76, + "transfer_price": 15.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ag", + "registrar": "porkbun", + "registration_price": 77.98, + "renewal_price": 77.98, + "transfer_price": 77.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "agency", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ai", + "registrar": "porkbun", + "registration_price": 72.4, + "renewal_price": 72.4, + "transfer_price": 144.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "airdrop", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "airforce", + "registrar": "porkbun", + "registration_price": 82.9, + "renewal_price": 82.9, + "transfer_price": 81.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "airy", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "aj", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ak", + "registrar": "porkbun", + "registration_price": 104.33, + "renewal_price": 27.09, + "transfer_price": 27.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "am", + "registrar": "porkbun", + "registration_price": 36.35, + "renewal_price": 36.35, + "transfer_price": 36.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ane", + "registrar": "porkbun", + "registration_price": 61.07, + "renewal_price": 61.07, + "transfer_price": 61.07, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "anytime", + "registrar": "porkbun", + "registration_price": 12.66, + "renewal_price": 12.66, + "transfer_price": 12.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "aotearoa", + "registrar": "porkbun", + "registration_price": 27.09, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "apartments", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 45.83, + "transfer_price": 45.83, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "api", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "app", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 14.93, + "transfer_price": 14.93, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "appt", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "archi", + "registrar": "porkbun", + "registration_price": 13.39, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "area", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "areas", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ark", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "army", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "art", + "registrar": "porkbun", + "registration_price": 2.12, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "articles", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "as", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 51.8, + "transfer_price": 51.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "asia", + "registrar": "porkbun", + "registration_price": 4.12, + "renewal_price": 11.84, + "transfer_price": 11.84, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "aspect", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "associates", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "attorney", + "registrar": "porkbun", + "registration_price": 49.95, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "auction", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "audio", + "registrar": "porkbun", + "registration_price": 103.5, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "autos", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "aware", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "baby", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "band", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bar", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bargains", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 24.2, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "basketball", + "registrar": "porkbun", + "registration_price": 41.88, + "renewal_price": 42.88, + "transfer_price": 42.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bayern", + "registrar": "porkbun", + "registration_price": 31.68, + "renewal_price": 31.68, + "transfer_price": 30.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "beach", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "beauty", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "beer", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "best", + "registrar": "porkbun", + "registration_price": 3.59, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "best-selling", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 22.97, + "transfer_price": 22.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bestaltcoin", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bet", + "registrar": "porkbun", + "registration_price": 8.03, + "renewal_price": 20.91, + "transfer_price": 20.91, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bh", + "registrar": "porkbun", + "registration_price": 41.29, + "renewal_price": 41.29, + "transfer_price": 41.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bible", + "registrar": "porkbun", + "registration_price": 40.68, + "renewal_price": 41.88, + "transfer_price": 41.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bid", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bike", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bills", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bingo", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 41.19, + "transfer_price": 39.65, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bio", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 58.19, + "transfer_price": 58.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "biometric", + "registrar": "porkbun", + "registration_price": 25.03, + "renewal_price": 31.2, + "transfer_price": 31.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "biz", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 16.99, + "transfer_price": 16.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "biz.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "black", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "blackfriday", + "registrar": "porkbun", + "registration_price": 103.5, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "blog", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "blue", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "boats", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bond", + "registrar": "porkbun", + "registration_price": 1.8, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "boo", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bop", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "boredapes", + "registrar": "porkbun", + "registration_price": 9.73, + "renewal_price": 9.73, + "transfer_price": 9.73, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "boston", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bot", + "registrar": "porkbun", + "registration_price": 30.38, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "boutique", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 24.2, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bpm", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "br.com", + "registrar": "porkbun", + "registration_price": 34.29, + "renewal_price": 34.29, + "transfer_price": 34.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "brand", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "breaker", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "broker", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "build", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "builders", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 27.19, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "business", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "buzz", + "registrar": "porkbun", + "registration_price": 2.05, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "bz", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "c", + "registrar": "porkbun", + "registration_price": 1.34, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "c0m", + "registrar": "porkbun", + "registration_price": 21.93, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ca", + "registrar": "porkbun", + "registration_price": 8.84, + "renewal_price": 8.95, + "transfer_price": 8.84, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cab", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cafe", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cam", + "registrar": "porkbun", + "registration_price": 1.8, + "renewal_price": 14.93, + "transfer_price": 14.93, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "camera", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "camp", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "capital", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cards", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "care", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "careers", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "casa", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cash", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "casino", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 129.25, + "transfer_price": 129.25, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "catering", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "catgirl", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 27.09, + "transfer_price": 27.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cc", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "center", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ceo", + "registrar": "porkbun", + "registration_price": 10.01, + "renewal_price": 88.05, + "transfer_price": 88.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cfd", + "registrar": "porkbun", + "registration_price": 1.23, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "channel", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "charge", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "charity", + "registrar": "porkbun", + "registration_price": 5.99, + "renewal_price": 22.66, + "transfer_price": 22.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "chat", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cheap", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "chic", + "registrar": "porkbun", + "registration_price": 52.83, + "renewal_price": 52.83, + "transfer_price": 52.83, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "christmas", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "church", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "city", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "claims", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cleaning", + "registrar": "porkbun", + "registration_price": 60.25, + "renewal_price": 60.25, + "transfer_price": 60.25, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "click", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "clinic", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "clothing", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 24.99, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cloud", + "registrar": "porkbun", + "registration_price": 3.88, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "club", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 13.9, + "transfer_price": 13.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "club.tw", + "registrar": "porkbun", + "registration_price": 17.99, + "renewal_price": 17.99, + "transfer_price": 17.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cn.com", + "registrar": "porkbun", + "registration_price": 14.73, + "renewal_price": 31.2, + "transfer_price": 31.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 25.03, + "transfer_price": 25.03, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.ag", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.bz", + "registrar": "porkbun", + "registration_price": 16.98, + "renewal_price": 18.98, + "transfer_price": 16.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.com", + "registrar": "porkbun", + "registration_price": 20.91, + "renewal_price": 20.91, + "transfer_price": 20.91, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.gg", + "registrar": "porkbun", + "registration_price": 39.95, + "renewal_price": 39.95, + "transfer_price": 39.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.je", + "registrar": "porkbun", + "registration_price": 39.95, + "renewal_price": 39.95, + "transfer_price": 39.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 12.27, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "co.uk", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "coach", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 62.31, + "transfer_price": 62.31, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "codes", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "coffee", + "registrar": "porkbun", + "registration_price": 12.87, + "renewal_price": 34.5, + "transfer_price": 34.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "college", + "registrar": "porkbun", + "registration_price": 10.3, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com", + "registrar": "porkbun", + "registration_price": 11.08, + "renewal_price": 11.08, + "transfer_price": 11.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.ag", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.ai", + "registrar": "porkbun", + "registration_price": 72.4, + "renewal_price": 72.4, + "transfer_price": 144.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.bz", + "registrar": "porkbun", + "registration_price": 16.98, + "renewal_price": 18.98, + "transfer_price": 16.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.de", + "registrar": "porkbun", + "registration_price": 4.62, + "renewal_price": 4.62, + "transfer_price": 4.62, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.mx", + "registrar": "porkbun", + "registration_price": 22.22, + "renewal_price": 22.22, + "transfer_price": 22.22, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.ph", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 41.99, + "transfer_price": 18.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.sc", + "registrar": "porkbun", + "registration_price": 83.18, + "renewal_price": 83.18, + "transfer_price": 83.18, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.se", + "registrar": "porkbun", + "registration_price": 8.64, + "renewal_price": 8.64, + "transfer_price": 8.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "com.vc", + "registrar": "porkbun", + "registration_price": 26.06, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "coming", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "community", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "company", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 16.99, + "transfer_price": 16.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "compare", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "computer", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "condos", + "registrar": "porkbun", + "registration_price": 46.86, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "construction", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "consultancy", + "registrar": "porkbun", + "registration_price": 6.48, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "consulting", + "registrar": "porkbun", + "registration_price": 14.42, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "contact", + "registrar": "porkbun", + "registration_price": 9.99, + "renewal_price": 9.99, + "transfer_price": 9.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "contractors", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cooking", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cool", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "coupons", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "courses", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cov", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cracker", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "crap", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "credit", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "creditcard", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 129.25, + "transfer_price": 129.25, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cricket", + "registrar": "porkbun", + "registration_price": 21.09, + "renewal_price": 21.09, + "transfer_price": 21.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cruises", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 41.99, + "transfer_price": 39.93, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cuba", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cv", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 8.03, + "transfer_price": 8.03, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cx", + "registrar": "porkbun", + "registration_price": 16.53, + "renewal_price": 16.75, + "transfer_price": 16.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cycle", + "registrar": "porkbun", + "registration_price": 21.88, + "renewal_price": 16.74, + "transfer_price": 16.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cymru", + "registrar": "porkbun", + "registration_price": 9.98, + "renewal_price": 9.98, + "transfer_price": 10.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "cyou", + "registrar": "porkbun", + "registration_price": 1.23, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dad", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dan", + "registrar": "porkbun", + "registration_price": 30.16, + "renewal_price": 14.72, + "transfer_price": 14.72, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dance", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 22.14, + "transfer_price": 22.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "date", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dating", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "day", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dd", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "de", + "registrar": "porkbun", + "registration_price": 2.9, + "renewal_price": 4.07, + "transfer_price": 4.07, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "de.com", + "registrar": "porkbun", + "registration_price": 15.29, + "renewal_price": 15.29, + "transfer_price": 15.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "deal", + "registrar": "porkbun", + "registration_price": 20.08, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dealer", + "registrar": "porkbun", + "registration_price": 51.64, + "renewal_price": null, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "deals", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "defi", + "registrar": "porkbun", + "registration_price": 63.12, + "renewal_price": 63.12, + "transfer_price": 63.12, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "degen", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "degree", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "delivery", + "registrar": "porkbun", + "registration_price": 5.15, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "democrat", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "den", + "registrar": "porkbun", + "registration_price": 17.82, + "renewal_price": 17.82, + "transfer_price": 17.82, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dental", + "registrar": "porkbun", + "registration_price": 62.31, + "renewal_price": 62.31, + "transfer_price": 62.31, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dentist", + "registrar": "porkbun", + "registration_price": 43.99, + "renewal_price": 43.99, + "transfer_price": 43.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "desi", + "registrar": "porkbun", + "registration_price": 12.87, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "design", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dev", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "devlog", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "diamonds", + "registrar": "porkbun", + "registration_price": 43.77, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "diet", + "registrar": "porkbun", + "registration_price": 103.5, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "digital", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "direct", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "directory", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 22.14, + "transfer_price": 22.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "discount", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 23.19, + "transfer_price": 22.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "diva", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "diy", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dn", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "doctor", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 93.2, + "transfer_price": 93.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dog", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "doge", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dogecoin", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 3.4, + "transfer_price": 3.4, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dojo", + "registrar": "porkbun", + "registration_price": 3.39, + "renewal_price": 3.39, + "transfer_price": 3.39, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "domains", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 34.5, + "transfer_price": 34.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dookie", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "download", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ds", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 2.37, + "transfer_price": 2.37, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dw3", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dweb", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "dy", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "eak", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "earth", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ebiz.tw", + "registrar": "porkbun", + "registration_price": 17.99, + "renewal_price": 17.99, + "transfer_price": 17.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "eco", + "registrar": "porkbun", + "registration_price": 59.73, + "renewal_price": 59.73, + "transfer_price": 59.73, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "education", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ela", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "email", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "energy", + "registrar": "porkbun", + "registration_price": 10.3, + "renewal_price": 93.2, + "transfer_price": 93.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "engineer", + "registrar": "porkbun", + "registration_price": 7.72, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "engineering", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "enterprises", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 27.19, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ep", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "equipment", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "esq", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "estate", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "estates", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "eu", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 5.16, + "transfer_price": 5.46, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "eu.com", + "registrar": "porkbun", + "registration_price": 15.29, + "renewal_price": 15.29, + "transfer_price": 15.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "events", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "exchange", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "expert", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "exposed", + "registrar": "porkbun", + "registration_price": 18.02, + "renewal_price": 18.02, + "transfer_price": 18.02, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "express", + "registrar": "porkbun", + "registration_price": 9.27, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ext", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ez", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fail", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "faith", + "registrar": "porkbun", + "registration_price": 10.79, + "renewal_price": 10.79, + "transfer_price": 10.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fam", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "family", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fan", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fans", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 8.75, + "transfer_price": 8.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "farm", + "registrar": "porkbun", + "registration_price": 7.72, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fashion", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fast", + "registrar": "porkbun", + "registration_price": 23.69, + "renewal_price": 23.69, + "transfer_price": 23.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fcb", + "registrar": "porkbun", + "registration_price": 6.48, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fcl", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fd", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fe", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "feedback", + "registrar": "porkbun", + "registration_price": 9.27, + "renewal_price": 309.47, + "transfer_price": 309.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "finance", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "financial", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "firm.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fish", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fishing", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fit", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fitness", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "flights", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "florist", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 24.99, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "flowers", + "registrar": "porkbun", + "registration_price": 103.5, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fm", + "registrar": "porkbun", + "registration_price": 87.85, + "renewal_price": 87.85, + "transfer_price": 87.85, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fo", + "registrar": "porkbun", + "registration_price": 50.87, + "renewal_price": 50.87, + "transfer_price": 50.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "follow", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "foo", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "food", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "football", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "foreigners", + "registrar": "porkbun", + "registration_price": 9.57, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "forex", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "forsale", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "forum", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "foundation", + "registrar": "porkbun", + "registration_price": 5.99, + "renewal_price": 22.66, + "transfer_price": 22.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "free", + "registrar": "porkbun", + "registration_price": 20.08, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "friendly", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fullon", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fun", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fund", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fundraising", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "furniture", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "futbol", + "registrar": "porkbun", + "registration_price": 9.99, + "renewal_price": 9.99, + "transfer_price": 9.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fw", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "fyi", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": 5.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gad", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gains", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gallery", + "registrar": "porkbun", + "registration_price": 23.17, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "game", + "registrar": "porkbun", + "registration_price": 309.47, + "renewal_price": 309.47, + "transfer_price": 309.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "game.tw", + "registrar": "porkbun", + "registration_price": 17.99, + "renewal_price": 17.99, + "transfer_price": 17.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "games", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 27.29, + "transfer_price": 27.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gamestudio", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 3.4, + "transfer_price": 3.4, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "garden", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gators", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gay", + "registrar": "porkbun", + "registration_price": 28.32, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gb.net", + "registrar": "porkbun", + "registration_price": 7.17, + "renewal_price": 7.17, + "transfer_price": 7.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "geek.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gen.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gen.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ger", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gg", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 51.8, + "transfer_price": 51.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gift", + "registrar": "porkbun", + "registration_price": 16.58, + "renewal_price": 16.58, + "transfer_price": 16.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gifts", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gives", + "registrar": "porkbun", + "registration_price": 5.99, + "renewal_price": 22.66, + "transfer_price": 22.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "giving", + "registrar": "porkbun", + "registration_price": 5.99, + "renewal_price": 22.66, + "transfer_price": 22.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "glass", + "registrar": "porkbun", + "registration_price": 58.19, + "renewal_price": 58.19, + "transfer_price": 58.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "global", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 77.75, + "transfer_price": 77.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gmbh", + "registrar": "porkbun", + "registration_price": 36.56, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "goatrance", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gold", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "golf", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gon", + "registrar": "porkbun", + "registration_price": 19.88, + "renewal_price": 19.88, + "transfer_price": 19.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "goodie", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "goody", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gr.com", + "registrar": "porkbun", + "registration_price": 12.89, + "renewal_price": 12.89, + "transfer_price": 12.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "graduate", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "graphics", + "registrar": "porkbun", + "registration_price": 18.19, + "renewal_price": 18.19, + "transfer_price": 18.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gratis", + "registrar": "porkbun", + "registration_price": 19.05, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "green", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 64.37, + "transfer_price": 64.37, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gripe", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": 5.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "group", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "guidance", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 5.46, + "transfer_price": 5.46, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "guide", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "guitars", + "registrar": "porkbun", + "registration_price": 103.5, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "gul", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "guru", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 34.5, + "transfer_price": 34.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hair", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hairtransplant", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "haus", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 27.29, + "transfer_price": 27.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "health", + "registrar": "porkbun", + "registration_price": 57.16, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "healthcare", + "registrar": "porkbun", + "registration_price": 70.55, + "renewal_price": 70.55, + "transfer_price": 70.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "help", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hiphop", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hire", + "registrar": "porkbun", + "registration_price": 52.82, + "renewal_price": 32.22, + "transfer_price": 32.22, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hits", + "registrar": "porkbun", + "registration_price": 8.02, + "renewal_price": 8.02, + "transfer_price": 8.02, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hiv", + "registrar": "porkbun", + "registration_price": 184.86, + "renewal_price": 184.86, + "transfer_price": 184.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hnm", + "registrar": "porkbun", + "registration_price": 12.67, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hockey", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "holders", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "holding", + "registrar": "porkbun", + "registration_price": 3.91, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "holdings", + "registrar": "porkbun", + "registration_price": 52.01, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "holiday", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "homes", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "horse", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hospital", + "registrar": "porkbun", + "registration_price": 44.19, + "renewal_price": 44.19, + "transfer_price": 42.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "host", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 77.75, + "transfer_price": 77.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hosting", + "registrar": "porkbun", + "registration_price": 309.47, + "renewal_price": 309.47, + "transfer_price": 309.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hot", + "registrar": "porkbun", + "registration_price": 24.2, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "house", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "how", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "hu.net", + "registrar": "porkbun", + "registration_price": 27.88, + "renewal_price": 27.88, + "transfer_price": 27.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ib", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "icu", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "id", + "registrar": "porkbun", + "registration_price": 18.33, + "renewal_price": 18.33, + "transfer_price": 18.33, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ide", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ik", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "imm", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "immo", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "immobilien", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 30.38, + "transfer_price": 30.38, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "in", + "registrar": "porkbun", + "registration_price": 7.83, + "renewal_price": 7.83, + "transfer_price": 7.83, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "in.net", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "inc", + "registrar": "porkbun", + "registration_price": 51.64, + "renewal_price": null, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ind.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "industries", + "registrar": "porkbun", + "registration_price": 9.53, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "info", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "info.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ing", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ink", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "innovator", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "institute", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 22.14, + "transfer_price": 22.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "insure", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 58.19, + "transfer_price": 58.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "international", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "investments", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "io", + "registrar": "porkbun", + "registration_price": 28.12, + "renewal_price": 46.65, + "transfer_price": 46.65, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ior", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "irish", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 18.02, + "transfer_price": 18.02, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "isla.pr", + "registrar": "porkbun", + "registration_price": 7.47, + "renewal_price": 7.47, + "transfer_price": 7.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "island", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 29.15, + "transfer_price": 29.15, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ism", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "it.com", + "registrar": "porkbun", + "registration_price": 6.98, + "renewal_price": 31.2, + "transfer_price": 31.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "iw", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ize", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ja", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "je", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 51.8, + "transfer_price": 51.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "jetzt", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "jewelry", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "job", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "jobs", + "registrar": "porkbun", + "registration_price": 101.64, + "renewal_price": 101.64, + "transfer_price": 99.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "jp.net", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "jpn.com", + "registrar": "porkbun", + "registration_price": 31.2, + "renewal_price": 31.2, + "transfer_price": 31.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "js", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "juegos", + "registrar": "porkbun", + "registration_price": 309.47, + "renewal_price": 309.47, + "transfer_price": 309.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kaufen", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 24.2, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kdd", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "keys", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kids", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kim", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kitchen", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kiwi.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kl", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ks", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kv", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "kyoto", + "registrar": "porkbun", + "registration_price": 40.98, + "renewal_price": 40.98, + "transfer_price": 40.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "l.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "la", + "registrar": "porkbun", + "registration_price": 27.34, + "renewal_price": 27.94, + "transfer_price": 27.34, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "land", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lat", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "law", + "registrar": "porkbun", + "registration_price": 82.9, + "renewal_price": 82.9, + "transfer_price": 82.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lawexpert", + "registrar": "porkbun", + "registration_price": 33.26, + "renewal_price": 17.82, + "transfer_price": 17.82, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lawsuit", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lawyer", + "registrar": "porkbun", + "registration_price": 49.95, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lc", + "registrar": "porkbun", + "registration_price": 18.85, + "renewal_price": 18.85, + "transfer_price": 18.85, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lean", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lease", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 44.8, + "transfer_price": 44.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "legal", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "legendary", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lgbt", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 64.37, + "transfer_price": 64.37, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "life", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lifestyle", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lighting", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 18.19, + "transfer_price": 18.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "limited", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "limo", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "link", + "registrar": "porkbun", + "registration_price": 7.72, + "renewal_price": 7.72, + "transfer_price": 7.72, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "live", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "living", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "llc", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 34.5, + "transfer_price": 34.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lli", + "registrar": "porkbun", + "registration_price": 12.67, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lo", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "loan", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "loans", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 93.2, + "transfer_price": 93.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lol", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "london", + "registrar": "porkbun", + "registration_price": 14.23, + "renewal_price": 27.96, + "transfer_price": 27.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "longhorns", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lotto", + "registrar": "porkbun", + "registration_price": 107.21, + "renewal_price": null, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "love", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ltd", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ltda", + "registrar": "porkbun", + "registration_price": 29.35, + "renewal_price": 30.16, + "transfer_price": 30.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lulz", + "registrar": "porkbun", + "registration_price": 9.57, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "luxe", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "luxury", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "lz", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "maison", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 45.83, + "transfer_price": 45.83, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "makeup", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mamak", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "management", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mansion", + "registrar": "porkbun", + "registration_price": 16.79, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "maori.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "market", + "registrar": "porkbun", + "registration_price": 35.53, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "marketing", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "markets", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "matching", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mba", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "me", + "registrar": "porkbun", + "registration_price": 7.58, + "renewal_price": 17.27, + "transfer_price": 17.27, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "me.uk", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "med", + "registrar": "porkbun", + "registration_price": 73.82, + "renewal_price": 147.65, + "transfer_price": 147.65, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "media", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "melbourne", + "registrar": "porkbun", + "registration_price": 40.12, + "renewal_price": 40.12, + "transfer_price": 40.12, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "meme", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "memorial", + "registrar": "porkbun", + "registration_price": 41.71, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "men", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ment", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ments", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "menu", + "registrar": "porkbun", + "registration_price": 26.96, + "renewal_price": 26.96, + "transfer_price": 26.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mex.com", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "miami", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ming", + "registrar": "porkbun", + "registration_price": 8.55, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mn", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 41.5, + "transfer_price": 41.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mobi", + "registrar": "porkbun", + "registration_price": 4.12, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "moda", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "moe", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 13.05, + "transfer_price": 13.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "moi", + "registrar": "porkbun", + "registration_price": 14.42, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mom", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "money", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 27.19, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "monster", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "montage", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "moonkid", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 9.78, + "transfer_price": 9.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "moons", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mortgage", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "motorcycles", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mov", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "movie", + "registrar": "porkbun", + "registration_price": 36.56, + "renewal_price": 278.58, + "transfer_price": 278.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mrly", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mtl", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mu", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 52.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "music", + "registrar": "porkbun", + "registration_price": 38.62, + "renewal_price": 38.62, + "transfer_price": 38.62, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "mx", + "registrar": "porkbun", + "registration_price": 39.28, + "renewal_price": 39.28, + "transfer_price": 39.28, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "my", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nagoya", + "registrar": "porkbun", + "registration_price": 13.76, + "renewal_price": 13.76, + "transfer_price": 13.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nah", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "name", + "registrar": "porkbun", + "registration_price": 7.31, + "renewal_price": 7.31, + "transfer_price": 7.31, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "name.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "navy", + "registrar": "porkbun", + "registration_price": 33.47, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net", + "registrar": "porkbun", + "registration_price": 12.52, + "renewal_price": 12.52, + "transfer_price": 12.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.ag", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.ai", + "registrar": "porkbun", + "registration_price": 72.4, + "renewal_price": 72.4, + "transfer_price": 144.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.bz", + "registrar": "porkbun", + "registration_price": 16.98, + "renewal_price": 18.98, + "transfer_price": 16.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.gg", + "registrar": "porkbun", + "registration_price": 39.95, + "renewal_price": 39.95, + "transfer_price": 36.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.je", + "registrar": "porkbun", + "registration_price": 39.95, + "renewal_price": 39.95, + "transfer_price": 39.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 12.27, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.ph", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 41.99, + "transfer_price": 18.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "net.vc", + "registrar": "porkbun", + "registration_price": 26.06, + "renewal_price": 26.98, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "network", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "new", + "registrar": "porkbun", + "registration_price": 412.46, + "renewal_price": 412.46, + "transfer_price": 412.46, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "news", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nexus", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nfts", + "registrar": "porkbun", + "registration_price": 6.48, + "renewal_price": 6.48, + "transfer_price": 6.48, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ngo", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ninja", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nl", + "registrar": "porkbun", + "registration_price": 7.7, + "renewal_price": 7.7, + "transfer_price": 7.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nom.ag", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nouns", + "registrar": "porkbun", + "registration_price": 9.73, + "renewal_price": 9.73, + "transfer_price": 9.73, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "now", + "registrar": "porkbun", + "registration_price": 20.08, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nrw", + "registrar": "porkbun", + "registration_price": 39.29, + "renewal_price": 39.29, + "transfer_price": 39.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nyc", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "nz", + "registrar": "porkbun", + "registration_price": 14.95, + "renewal_price": 14.95, + "transfer_price": 14.92, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ob", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "observer", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 9.78, + "transfer_price": 9.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "od", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "off.ai", + "registrar": "porkbun", + "registration_price": 72.4, + "renewal_price": 72.4, + "transfer_price": 144.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "og", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "one", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ong", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "onl", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 10.76, + "transfer_price": 10.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "online", + "registrar": "porkbun", + "registration_price": 1.96, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "onlinenews", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "oof", + "registrar": "porkbun", + "registration_price": 78.58, + "renewal_price": 78.58, + "transfer_price": 78.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ooo", + "registrar": "porkbun", + "registration_price": 21.1, + "renewal_price": 21.1, + "transfer_price": 21.1, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org", + "registrar": "porkbun", + "registration_price": 6.88, + "renewal_price": 10.74, + "transfer_price": 10.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.ag", + "registrar": "porkbun", + "registration_price": 51.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.ai", + "registrar": "porkbun", + "registration_price": 72.4, + "renewal_price": 72.4, + "transfer_price": 144.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.bz", + "registrar": "porkbun", + "registration_price": 16.98, + "renewal_price": 18.98, + "transfer_price": 16.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.gg", + "registrar": "porkbun", + "registration_price": 36.35, + "renewal_price": 39.95, + "transfer_price": 36.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.in", + "registrar": "porkbun", + "registration_price": 5.8, + "renewal_price": 5.8, + "transfer_price": 5.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.je", + "registrar": "porkbun", + "registration_price": 36.35, + "renewal_price": 39.95, + "transfer_price": 36.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.mx", + "registrar": "porkbun", + "registration_price": 20.14, + "renewal_price": 20.14, + "transfer_price": 20.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 12.27, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.ph", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 41.99, + "transfer_price": 18.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.sc", + "registrar": "porkbun", + "registration_price": 83.18, + "renewal_price": 83.18, + "transfer_price": 83.18, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.uk", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "org.vc", + "registrar": "porkbun", + "registration_price": 26.06, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "organic", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 68.49, + "transfer_price": 68.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "osaka", + "registrar": "porkbun", + "registration_price": 26.68, + "renewal_price": 26.88, + "transfer_price": 26.68, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ost", + "registrar": "porkbun", + "registration_price": 32.23, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ostberlin", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 2.37, + "transfer_price": 2.37, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ot", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "owbo", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "p.lc", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "page", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pal", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "partners", + "registrar": "porkbun", + "registration_price": 7.72, + "renewal_price": 57.16, + "transfer_price": 57.16, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "parts", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "party", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "payoff", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "performer", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pet", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "petlover", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "petsupply", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ph", + "registrar": "porkbun", + "registration_price": 41.5, + "renewal_price": 41.99, + "transfer_price": 19.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pharma", + "registrar": "porkbun", + "registration_price": 62.1, + "renewal_price": 62.1, + "transfer_price": 62.1, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "phd", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "photo", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "photography", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "photos", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 24.2, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pics", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "picture", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pictures", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pink", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pizza", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "place", + "registrar": "porkbun", + "registration_price": 18.02, + "renewal_price": 18.02, + "transfer_price": 18.02, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "places", + "registrar": "porkbun", + "registration_price": 21.88, + "renewal_price": 16.74, + "transfer_price": 16.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "plug-in", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 22.97, + "transfer_price": 22.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "plumbing", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 58.19, + "transfer_price": 58.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "plus", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "poker", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 54.07, + "transfer_price": 54.07, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "policeman", + "registrar": "porkbun", + "registration_price": 516.22, + "renewal_price": 52.78, + "transfer_price": 52.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "porn", + "registrar": "porkbun", + "registration_price": 98.35, + "renewal_price": 98.35, + "transfer_price": 98.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ports", + "registrar": "porkbun", + "registration_price": 8.55, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "posting", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "press", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 61.28, + "transfer_price": 61.28, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pro", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pro.pr", + "registrar": "porkbun", + "registration_price": 103.98, + "renewal_price": 51.98, + "transfer_price": 51.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "productions", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 32.44, + "transfer_price": 32.44, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "prof", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "project", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "promo", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "proofs", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "properties", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "property", + "registrar": "porkbun", + "registration_price": 18.02, + "renewal_price": 103.5, + "transfer_price": 103.5, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "proudly", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "psytrance", + "registrar": "porkbun", + "registration_price": 8.55, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pub", + "registrar": "porkbun", + "registration_price": 32.44, + "renewal_price": 32.44, + "transfer_price": 32.44, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pun", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pv", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "pw", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 15.76, + "transfer_price": 15.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "qn", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "qpon", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 9.66, + "transfer_price": 9.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "qth", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "quest", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "racing", + "registrar": "porkbun", + "registration_price": 10.79, + "renewal_price": 10.79, + "transfer_price": 10.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "radio.am", + "registrar": "porkbun", + "registration_price": 12.67, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "radio.fm", + "registrar": "porkbun", + "registration_price": 12.67, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rd", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "reach", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "readings", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 22.97, + "transfer_price": 22.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "realty", + "registrar": "porkbun", + "registration_price": 88.05, + "renewal_price": 288.88, + "transfer_price": 288.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "recipes", + "registrar": "porkbun", + "registration_price": 5.15, + "renewal_price": 62.31, + "transfer_price": 62.31, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "recorder", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "red", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rehab", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "reise", + "registrar": "porkbun", + "registration_price": 77.75, + "renewal_price": 77.75, + "transfer_price": 77.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "reisen", + "registrar": "porkbun", + "registration_price": 16.99, + "renewal_price": 16.99, + "transfer_price": 16.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "remember", + "registrar": "porkbun", + "registration_price": 9.57, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rent", + "registrar": "porkbun", + "registration_price": 10.3, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rentals", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "repair", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "report", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "republican", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "researcher", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 5.46, + "transfer_price": 5.46, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "reseller", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "resources", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 16.79, + "transfer_price": 16.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rest", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "restaurant", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "review", + "registrar": "porkbun", + "registration_price": 10.79, + "renewal_price": 10.79, + "transfer_price": 10.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "reviews", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rich", + "registrar": "porkbun", + "registration_price": 78.99, + "renewal_price": null, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rim", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rip", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "risk", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rl", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rmx", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rn", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rocks", + "registrar": "porkbun", + "registration_price": 7.21, + "renewal_price": 18.02, + "transfer_price": 18.02, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rodeo", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 8.75, + "transfer_price": 8.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rsvp", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ru.com", + "registrar": "porkbun", + "registration_price": 143.46, + "renewal_price": 143.46, + "transfer_price": 143.46, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rugby", + "registrar": "porkbun", + "registration_price": 41.98, + "renewal_price": 42.98, + "transfer_price": 42.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "run", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 22.14, + "transfer_price": 22.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "runner", + "registrar": "porkbun", + "registration_price": 104.33, + "renewal_price": 52.83, + "transfer_price": 52.83, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "rust", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sa.com", + "registrar": "porkbun", + "registration_price": 308.24, + "renewal_price": 308.24, + "transfer_price": 308.24, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "saarland", + "registrar": "porkbun", + "registration_price": 22.09, + "renewal_price": 22.09, + "transfer_price": 22.09, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "saf", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sale", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sales", + "registrar": "porkbun", + "registration_price": 16.74, + "renewal_price": 16.74, + "transfer_price": 16.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "salon", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 44.19, + "transfer_price": 42.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sarl", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": 5.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sats", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "savory", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "say", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sbs", + "registrar": "porkbun", + "registration_price": 1.23, + "renewal_price": 12.87, + "transfer_price": 12.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sc", + "registrar": "porkbun", + "registration_price": 82.7, + "renewal_price": 82.7, + "transfer_price": 82.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "scam", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "school", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "school.nz", + "registrar": "porkbun", + "registration_price": 12.99, + "renewal_price": 12.99, + "transfer_price": 15.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "schooling", + "registrar": "porkbun", + "registration_price": 22.97, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "schule", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "science", + "registrar": "porkbun", + "registration_price": 10.79, + "renewal_price": 10.79, + "transfer_price": 10.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "se.net", + "registrar": "porkbun", + "registration_price": 27.88, + "renewal_price": 27.88, + "transfer_price": 27.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "secrets", + "registrar": "porkbun", + "registration_price": 32.23, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "select", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "services", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "settings", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sex", + "registrar": "porkbun", + "registration_price": 98.35, + "renewal_price": 98.35, + "transfer_price": 98.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sey", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sh", + "registrar": "porkbun", + "registration_price": 31.2, + "renewal_price": 31.2, + "transfer_price": 31.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shark", + "registrar": "porkbun", + "registration_price": 2.36, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shiksha", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shoes", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shop", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shopping", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 24.2, + "transfer_price": 24.2, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shortcut", + "registrar": "porkbun", + "registration_price": 2.88, + "renewal_price": 2.88, + "transfer_price": 2.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "shot", + "registrar": "porkbun", + "registration_price": 32.23, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "show", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sig", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "signals", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "singles", + "registrar": "porkbun", + "registration_price": 7.21, + "renewal_price": 27.29, + "transfer_price": 27.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "site", + "registrar": "porkbun", + "registration_price": 1.96, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ski", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "skin", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "snyder", + "registrar": "porkbun", + "registration_price": 5.97, + "renewal_price": 5.97, + "transfer_price": 5.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "soccer", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "social", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "software", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "solar", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "solutions", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "soy", + "registrar": "porkbun", + "registration_price": 19.05, + "renewal_price": 19.05, + "transfer_price": 19.05, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "spa", + "registrar": "porkbun", + "registration_price": 21.61, + "renewal_price": 21.61, + "transfer_price": 21.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "space", + "registrar": "porkbun", + "registration_price": 1.13, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "spooky", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "spot", + "registrar": "porkbun", + "registration_price": 14.42, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "srl", + "registrar": "porkbun", + "registration_price": 27.29, + "renewal_price": 28.03, + "transfer_price": 28.03, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ssl", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "startup", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "storage", + "registrar": "porkbun", + "registration_price": 515.45, + "renewal_price": 515.45, + "transfer_price": 515.45, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "store", + "registrar": "porkbun", + "registration_price": 2.57, + "renewal_price": 41.71, + "transfer_price": 41.71, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "stream", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "streetcredit", + "registrar": "porkbun", + "registration_price": 21.93, + "renewal_price": 21.93, + "transfer_price": 21.93, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "studio", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "study", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "style", + "registrar": "porkbun", + "registration_price": 7.21, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sucks", + "registrar": "porkbun", + "registration_price": 205.46, + "renewal_price": 213.14, + "transfer_price": 213.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "suh", + "registrar": "porkbun", + "registration_price": 13.7, + "renewal_price": 13.7, + "transfer_price": 13.7, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "supplies", + "registrar": "porkbun", + "registration_price": 20.08, + "renewal_price": 20.08, + "transfer_price": 20.08, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "supply", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "support", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 22.14, + "transfer_price": 22.14, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "surf", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "surgery", + "registrar": "porkbun", + "registration_price": 43.77, + "renewal_price": 43.77, + "transfer_price": 43.77, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "sydney", + "registrar": "porkbun", + "registration_price": 40.12, + "renewal_price": 40.12, + "transfer_price": 40.12, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "systems", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 28.32, + "transfer_price": 28.32, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "taipei", + "registrar": "porkbun", + "registration_price": 14.98, + "renewal_price": 15.19, + "transfer_price": 14.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "talk", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tar", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tattoo", + "registrar": "porkbun", + "registration_price": 31.41, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tax", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 54.07, + "transfer_price": 54.07, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "taxi", + "registrar": "porkbun", + "registration_price": 6.18, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "team", + "registrar": "porkbun", + "registration_price": 3.6, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tears", + "registrar": "porkbun", + "registration_price": 10.6, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tech", + "registrar": "porkbun", + "registration_price": 8.75, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "techno", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "technology", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "teck", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tel", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 9.78, + "transfer_price": 9.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tennis", + "registrar": "porkbun", + "registration_price": 52.01, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ter", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "theater", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "theatre", + "registrar": "porkbun", + "registration_price": 515.45, + "renewal_price": 515.45, + "transfer_price": 515.45, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tickets", + "registrar": "porkbun", + "registration_price": 360.97, + "renewal_price": 360.97, + "transfer_price": 360.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tienda", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tilt", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tips", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tires", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 72.61, + "transfer_price": 72.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tm", + "registrar": "porkbun", + "registration_price": 432.85, + "renewal_price": 432.85, + "transfer_price": 412.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tni", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 4.42, + "transfer_price": 4.42, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "to", + "registrar": "porkbun", + "registration_price": 51.8, + "renewal_price": 51.8, + "transfer_price": 51.8, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "today", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 23.17, + "transfer_price": 23.17, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "token", + "registrar": "porkbun", + "registration_price": 27.09, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tokyo", + "registrar": "porkbun", + "registration_price": 13.76, + "renewal_price": 13.76, + "transfer_price": 13.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tools", + "registrar": "porkbun", + "registration_price": 9.78, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "top", + "registrar": "porkbun", + "registration_price": 1.63, + "renewal_price": 4.63, + "transfer_price": 4.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tours", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "town", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "toys", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 52.01, + "transfer_price": 52.01, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "traction", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "trade", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "trading", + "registrar": "porkbun", + "registration_price": 16.99, + "renewal_price": 16.99, + "transfer_price": 16.99, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "training", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "travel", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 118.95, + "transfer_price": 118.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "trekking", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tricks", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "troll", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tube", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 21.61, + "transfer_price": 21.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tv", + "registrar": "porkbun", + "registration_price": 26.26, + "renewal_price": 26.26, + "transfer_price": 26.26, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tw", + "registrar": "porkbun", + "registration_price": 16.29, + "renewal_price": 17.29, + "transfer_price": 16.29, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "tx", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "uch", + "registrar": "porkbun", + "registration_price": 8.55, + "renewal_price": 8.55, + "transfer_price": 8.55, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ud", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ue", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "uk", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 5.66, + "transfer_price": null, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "uk.com", + "registrar": "porkbun", + "registration_price": 22.61, + "renewal_price": 22.61, + "transfer_price": 22.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "uk.net", + "registrar": "porkbun", + "registration_price": 22.61, + "renewal_price": 22.61, + "transfer_price": 22.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "unit", + "registrar": "porkbun", + "registration_price": 6.48, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "universe", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "university", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 49.95, + "transfer_price": 49.95, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "uno", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 15.96, + "transfer_price": 15.96, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ur", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 9.58, + "transfer_price": 9.58, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "us", + "registrar": "porkbun", + "registration_price": 3.91, + "renewal_price": 7.0, + "transfer_price": 7.0, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "us.com", + "registrar": "porkbun", + "registration_price": 15.76, + "renewal_price": 15.76, + "transfer_price": 15.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "us.org", + "registrar": "porkbun", + "registration_price": 15.76, + "renewal_price": 15.76, + "transfer_price": 15.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "use", + "registrar": "porkbun", + "registration_price": 9.37, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ush", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vacations", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vc", + "registrar": "porkbun", + "registration_price": 26.06, + "renewal_price": 26.06, + "transfer_price": 26.06, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vegas", + "registrar": "porkbun", + "registration_price": 15.96, + "renewal_price": 41.66, + "transfer_price": 41.66, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ventures", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vet", + "registrar": "porkbun", + "registration_price": 33.47, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "viajes", + "registrar": "porkbun", + "registration_price": 36.56, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "video", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "viewer", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "villas", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vin", + "registrar": "porkbun", + "registration_price": 6.69, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vip", + "registrar": "porkbun", + "registration_price": 4.12, + "renewal_price": 5.15, + "transfer_price": 5.15, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vision", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 36.56, + "transfer_price": 36.56, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "visit", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "visualization", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vitamin", + "registrar": "porkbun", + "registration_price": 32.23, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vlog", + "registrar": "porkbun", + "registration_price": 5.46, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vodka", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vote", + "registrar": "porkbun", + "registration_price": 21.11, + "renewal_price": 72.61, + "transfer_price": 72.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "voto", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 56.13, + "transfer_price": 56.13, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "voyage", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 46.86, + "transfer_price": 46.86, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vrmmo", + "registrar": "porkbun", + "registration_price": 9.58, + "renewal_price": 20.91, + "transfer_price": 20.91, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "vvip", + "registrar": "porkbun", + "registration_price": 1.34, + "renewal_price": 3.4, + "transfer_price": 3.4, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wala", + "registrar": "porkbun", + "registration_price": 2.88, + "renewal_price": 2.88, + "transfer_price": 2.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wales", + "registrar": "porkbun", + "registration_price": 9.98, + "renewal_price": 9.98, + "transfer_price": 10.19, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wang", + "registrar": "porkbun", + "registration_price": 4.12, + "renewal_price": 6.23, + "transfer_price": 6.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "watch", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 35.53, + "transfer_price": 35.53, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "watches", + "registrar": "porkbun", + "registration_price": 52.01, + "renewal_price": 257.98, + "transfer_price": 257.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wave", + "registrar": "porkbun", + "registration_price": 21.93, + "renewal_price": 19.87, + "transfer_price": 19.87, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wc", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "we3", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "web5", + "registrar": "porkbun", + "registration_price": 10.61, + "renewal_price": 3.4, + "transfer_price": 3.4, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "webcam", + "registrar": "porkbun", + "registration_price": 10.79, + "renewal_price": 10.79, + "transfer_price": 10.79, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "webdesigner", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "website", + "registrar": "porkbun", + "registration_price": 1.13, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "websites", + "registrar": "porkbun", + "registration_price": 16.74, + "renewal_price": 16.74, + "transfer_price": 16.74, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wedding", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "westernaustralia", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 12.67, + "transfer_price": 12.67, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wh", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wiki", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 21.11, + "transfer_price": 21.11, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "win", + "registrar": "porkbun", + "registration_price": 4.61, + "renewal_price": 5.64, + "transfer_price": 4.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wine", + "registrar": "porkbun", + "registration_price": 5.66, + "renewal_price": 47.89, + "transfer_price": 47.89, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "won", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 11.63, + "transfer_price": 11.63, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "work", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 8.75, + "transfer_price": 8.75, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "works", + "registrar": "porkbun", + "registration_price": 4.63, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "workspace", + "registrar": "porkbun", + "registration_price": 21.94, + "renewal_price": 21.94, + "transfer_price": 21.94, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "world", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 33.47, + "transfer_price": 33.47, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wq", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wr", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "ws", + "registrar": "porkbun", + "registration_price": 5.94, + "renewal_price": 20.91, + "transfer_price": 20.91, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wtf", + "registrar": "porkbun", + "registration_price": 3.09, + "renewal_price": 29.35, + "transfer_price": 29.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "wwwroot", + "registrar": "porkbun", + "registration_price": 2.37, + "renewal_price": 32.23, + "transfer_price": 32.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xad", + "registrar": "porkbun", + "registration_price": 2.88, + "renewal_price": 2.88, + "transfer_price": 2.88, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--5tzm5g", + "registrar": "porkbun", + "registration_price": 11.84, + "renewal_price": 11.84, + "transfer_price": 11.84, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--6frz82g", + "registrar": "porkbun", + "registration_price": 13.9, + "renewal_price": 13.9, + "transfer_price": 13.9, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--btc-6r6a", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--czrs0t", + "registrar": "porkbun", + "registration_price": 37.59, + "renewal_price": 37.59, + "transfer_price": 37.59, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--dei", + "registrar": "porkbun", + "registration_price": 11.63, + "renewal_price": 9.57, + "transfer_price": 9.57, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--eth-6r6a", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--fjq720a", + "registrar": "porkbun", + "registration_price": 69.52, + "renewal_price": 69.52, + "transfer_price": 69.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--l47h", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--q9jyb4c", + "registrar": "porkbun", + "registration_price": 7.43, + "renewal_price": 7.43, + "transfer_price": 7.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--t-eha", + "registrar": "porkbun", + "registration_price": 28.12, + "renewal_price": 22.97, + "transfer_price": 22.97, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--unup4y", + "registrar": "porkbun", + "registration_price": 69.52, + "renewal_price": 69.52, + "transfer_price": 69.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xn--vhquv", + "registrar": "porkbun", + "registration_price": 69.52, + "renewal_price": 69.52, + "transfer_price": 69.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xof", + "registrar": "porkbun", + "registration_price": 6.49, + "renewal_price": 6.49, + "transfer_price": 6.49, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xr", + "registrar": "porkbun", + "registration_price": 11.64, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xxx", + "registrar": "porkbun", + "registration_price": 98.35, + "renewal_price": 98.35, + "transfer_price": 98.35, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "xyz", + "registrar": "porkbun", + "registration_price": 2.06, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "y", + "registrar": "porkbun", + "registration_price": 20.78, + "renewal_price": 20.78, + "transfer_price": 20.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yachts", + "registrar": "porkbun", + "registration_price": 1.54, + "renewal_price": 12.98, + "transfer_price": 12.98, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yb", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yo", + "registrar": "porkbun", + "registration_price": 4.43, + "renewal_price": 4.43, + "transfer_price": 4.43, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yoga", + "registrar": "porkbun", + "registration_price": 25.23, + "renewal_price": 25.23, + "transfer_price": 25.23, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yokohama", + "registrar": "porkbun", + "registration_price": 13.76, + "renewal_price": 13.76, + "transfer_price": 13.76, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yon", + "registrar": "porkbun", + "registration_price": 7.52, + "renewal_price": 7.52, + "transfer_price": 7.52, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "you", + "registrar": "porkbun", + "registration_price": 18.54, + "renewal_price": 18.54, + "transfer_price": 18.54, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yxz", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 10.61, + "transfer_price": 10.61, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "yzx", + "registrar": "porkbun", + "registration_price": 3.4, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "z", + "registrar": "porkbun", + "registration_price": 20.78, + "renewal_price": 20.78, + "transfer_price": 20.78, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "za.com", + "registrar": "porkbun", + "registration_price": 308.24, + "renewal_price": 308.24, + "transfer_price": 308.24, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "zen", + "registrar": "porkbun", + "registration_price": 1.34, + "renewal_price": 11.64, + "transfer_price": 11.64, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "zip", + "registrar": "porkbun", + "registration_price": 10.81, + "renewal_price": 10.81, + "transfer_price": 10.81, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "zone", + "registrar": "porkbun", + "registration_price": 8.24, + "renewal_price": 31.41, + "transfer_price": 31.41, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + }, + { + "tld": "zp", + "registrar": "porkbun", + "registration_price": 17.69, + "renewal_price": 17.69, + "transfer_price": 17.69, + "currency": "USD", + "promo_price": null, + "recorded_at": "2025-12-08T08:04:54.014822" + } + ] +} \ No newline at end of file