From 279a496f3e64e840cd74440b989cf6d066598f87 Mon Sep 17 00:00:00 2001 From: dvs-dvsxt Date: Fri, 28 Aug 2026 10:07:50 +0800 Subject: [PATCH] docs: update example domain to api.dvssvc.site (v3.0.1) --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e4c8712..51dabdd 100644 --- a/README.md +++ b/README.md @@ -40,25 +40,25 @@ python API.py ```bash # API directory / index -curl http://localhost:880/api/v3 +curl http://api.dvssvc.site/api/v3 # Current time -curl http://localhost:880/api/v3/time +curl http://api.dvssvc.site/api/v3/time # Weather by city -curl "http://localhost:880/api/v3/weather?city=Beijing" +curl "http://api.dvssvc.site/api/v3/weather?city=Beijing" # Weather by adcode -curl "http://localhost:880/api/v3/weather?adcode=110000" +curl "http://api.dvssvc.site/api/v3/weather?adcode=110000" # Phone number lookup -curl "http://localhost:880/api/v3/phone?phone=13800138000" +curl "http://api.dvssvc.site/api/v3/phone?phone=13800138000" # Your public IP -curl "http://localhost:880/api/v3/ip/me" +curl "http://api.dvssvc.site/api/v3/ip/me" # IP geolocation -curl "http://localhost:880/api/v3/ip?ip=8.8.8.8" +curl "http://api.dvssvc.site/api/v3/ip?ip=8.8.8.8" ``` ---