Check-Host.cc

API दस्तऐवज

65+ जागतिक नोड्सवरून वितरीत नेटवर्क डायग्नोस्टिक्स — Ping, MTR, DNS, HTTP, TCP आणि UDP — सोबत होस्ट मेटाडेटा, WHOIS आणि जुने चेक रिपोर्ट. खालचा प्रत्येक एंडपॉइंट संपादनयोग्य आहे आणि थेट तुमच्या ब्राउझरमधून लाइव्ह API वर चालवता येतो.

हे कशासाठी?

बहुतेक प्रकरणांत अनॉनिमस वापर पुरेसा आहे. प्रति-IP आणि प्रति-टार्गेट मध्यम रेट लिमिट लागू असतात — नेमक्या आकड्यांसाठी /about वरील पूर्ण टेबल पहा.

API की (UUID फॉर्मॅट) ही मर्यादा वाढवते आणि प्रत्येक की साठी मासिक कोटा देते. की विनामूल्य आहेत — Check-Host ना-नफा प्रकल्प आहे आणि या मर्यादा फक्त गैरवापर रोखण्यासाठी आहेत, कमाईसाठी नाही. अनॉनिमस स्तरापेक्षा जास्त गरज असेल तर सपोर्टला संपर्क करा.

Send the key as an Authorization: Bearer <key> header — the code samples below fill this in for you. For backward compatibility an apikey field in a POST body is still accepted; passing it in the URL query string is not.

गोपनीयता: ही की केवळ या पेजवरील तुमच्या ब्राउझरच्या localStorage मध्ये राहते आणि फक्त api.check-host.cc कडे पाठवली जाते.

जलद सुरुवात

चेक पाठवणे असिंक्रोनस आहे: (1) मॉनिटरिंग एंडपॉइंटला POST करा आणि UUID घ्या, (2) मग प्रत्येक नोड उत्तर देईपर्यंत /report/{uuid} पोल करा. बहुतेक चेक 1–10 सेकंदांत पूर्ण होतात. खालच्या एंडपॉइंटवर चालवा क्लिक केल्यावर हे आपोआप होते.

पोलिंग पॅटर्न (bash)
# 1. Dispatch a check, capture the UUID
UUID=$(curl -s -X POST https://api.check-host.cc/ping \
  -H 'Content-Type: application/json' \
  -d '{"target":"check-host.cc","region":["DE"]}' | jq -r .uuid)

# 2. Poll until at least one node has reported
until curl -s "https://api.check-host.cc/report/$UUID" \
  | jq -e '.data | length >= 1' > /dev/null; do sleep 1; done

curl -s "https://api.check-host.cc/report/$UUID" | jq .

लुकअप

8 एंडपॉइंट

IP, जिओलोकेशन, WHOIS आणि लाइव्ह नोड यादी.

जागतिक चेक

12 एंडपॉइंट

65+ जागतिक नोड्सवरून Ping / TCP / UDP / HTTP / DNS / MTR चेक पाठवा — प्रत्येक कॉल UUID परत करते आणि नंतर /report/{uuid} ला निकालांसाठी आपोआप पोल करते.

जलद GET शॉर्टकट

साध्या चेकसाठी तयार URL — प्रांत निवड किंवा Live मोड नाही (त्यासाठी वरचा POST वापरा).

Network Intelligence

3 एंडपॉइंट

Dispatch deep, multi-stage scans (port + banner + body + TLS + threat-intel) of an IP, CIDR, domain or ASN. Asynchronous: submit, then poll the status endpoint. Open to guests, with per-IP and per-target hourly quotas.

Intelligence Data

8 एंडपॉइंट

Read the aggregated intelligence we already hold for an entity — the same data that powers the /ip, /as, /domain … pages, as JSON. Open to guests with a per-IP rate limit; an API key lifts the limits.

Geo Intelligence

4 एंडपॉइंट

Country, TLD and continent-level aggregates plus the global threat feed — the same data that powers the /country, /tld, /continent and /threats pages, as JSON. Open to guests with a per-IP rate limit; an API key lifts the limits.

रिपोर्ट

3 एंडपॉइंट

आधी पाठवलेल्या चेकचा JSON रिपोर्ट किंवा रेंडर केलेल्या स्टेटस इमेज मिळवा.