N
NightStrom404
HomeHTTP CheckerScreenshotScannerTikTok DLSpotify DLProxy List
API
About
N
NightStrom404 MultiTools

Premium multi-tool platform built for developers, security researchers, and power users. Fast, secure, and completely free.

Tools

  • HTTP Checker
  • Security Scanner
  • Screenshot
  • TikTok Downloader
  • Spotify Downloader
  • Proxy List

Resources

  • Developer API
  • About
  • Security
  • Humans

Copyright © 2026 NightStrom404. All Rights Reserved.

Built with Next.js 15 & Tailwind CSS

Developer API

RESTful API for all tools. No authentication required.

/api/http-check

GET

Check HTTP status from multiple global nodes.

Parameters

NameTypeRequiredDescription
urlstringRequiredTarget URL to check

Headers

Accept:application/json

Status Codes

200Success
400Invalid URL parameter
429Rate limit exceeded
500Internal server error
Rate Limit: 60 requests/minute

Response Example

{
  "url": "https://google.com",
  "requestId": "req_...",
  "nodes": [
    {
      "country": "United States",
      "countryCode": "us",
      "status": 200,
      "ping": 45,
      "ip": "142.250...."
    }
  ],
  "successCount": 35,
  "avgPing": 67,
  "totalNodes": 40,
  "timestamp": "2026-08-06T12:00:00Z"
}

Interactive Playground

curl -X GET \
  'https://nightstrom404.vercel.app/api/http-check?url=google.com' \
  -H 'Accept: application/json'