Skip to content

ALFARABs/API-NAWALA-TRUSTPOSITIF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

AETHERCLOUD NAWALA CHECKER API v1

Ask DeepWiki

BASE URL

https://apiv1.aethercloud.web.id

REAL-TIME STATUS

Check the real-time status of the API.

Endpoint:

GET /

Response:

{
  "status": "online"
}

CEK DOMAIN (REAL-TIME)

Check one or more domains against the Nawala blocklist in real-time.

Endpoint:

GET /check?domain=DOMAIN

Features:

  • Check a single domain.
  • Check multiple domains (separated by commas).
  • Real-time checks.

Contoh Request (Single Domain)

GET /check?domain=google.com

Contoh Request (Multiple Domains)

GET /check?domain=google.com,pornhub.com,example.com

Contoh Response

{
  "client_ip": "103.xxx.xxx.xxx",
  "latency_ms": 1823,
  "count": 3,
  "timestamp": "2025-12-29T14:10:22+08:00",
  "results": [
    {
      "domain": "google.com",
      "status": "SAFE"
    },
    {
      "domain": "pornhub.com",
      "status": "BLOCKED"
    },
    {
      "domain": "example.com",
      "status": "SAFE"
    }
  ]
}

STATUS DOMAIN

Status Keterangan (Description)
SAFE Domain tidak diblokir (Domain is not blocked)
BLOCKED Domain diblokir (Domain is blocked)
UNKNOWN Status tidak terdeteksi (Status could not be determined)
ERROR Terjadi kesalahan (An error occurred)

CONTOH PAKAI CURL

Single Domain

curl "https://apiv1.aethercloud.web.id/check?domain=google.com"

Multiple Domains

curl "https://apiv1.aethercloud.web.id/check?domain=google.com,pornhub.com"

CATATAN (Notes)

  • API is real-time.
  • No API key required.
  • Supports multi-domain checks.
  • Please use responsibly.
  • Ideal for bots, monitoring, and automation.

AETHERCLOUD

Nawala Checker API v1

Releases

No releases published

Packages

No packages published

Languages