From 9c64f61fb66bccd60b8a5b362d8995194d8973f4 Mon Sep 17 00:00:00 2001 From: "yves.gugger" Date: Thu, 11 Dec 2025 11:37:59 +0100 Subject: [PATCH] fix: Remove estibot_appraisal field - Dynadot now works! - Fixed: 'estibot_appraisal' is not a DomainAuction field - Dynadot now saves 100 auctions to DB - Total active auctions: 511 (was 386) Sample data: - embedgooglemap.net: $10,200 (51 bids) - 9454.com: $2,550 (73 bids) - swosh.com: $2,550 (31 bids) --- backend/app/services/hidden_api_scrapers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/app/services/hidden_api_scrapers.py b/backend/app/services/hidden_api_scrapers.py index 9515f96..7cb6a7e 100644 --- a/backend/app/services/hidden_api_scrapers.py +++ b/backend/app/services/hidden_api_scrapers.py @@ -309,8 +309,7 @@ class DynadotApiScraper: "auction_url": build_affiliate_url("Dynadot", domain), "currency": item.get("bid_price_currency", "USD"), "is_active": True, - # Bonus data from Dynadot - "estibot_appraisal": float(item.get("estibot_appraisal", 0) or 0), + # Map to existing DomainAuction fields "backlinks": int(item.get("links", 0) or 0), "age_years": int(item.get("age", 0) or 0), })