GreyNoise API

⭐ Beginner's Pick Security / API Key Intermediate HTTPS
Varies by plan (check documentation)

Overview

GreyNoise analyzes internet-wide scanning activity and lets you look up any IP address to determine whether it is a known internet scanner, bot, or legitimate user. This helps security analysts cut through noise in logs and focus on truly suspicious traffic. The community API provides basic context for free without requiring a paid subscription.

💡

Beginner Tip

Use the free community endpoint to check IPs from your server logs — if GreyNoise classifies an IP as "benign" (a known scanner), you can safely de-prioritize those alerts. Register for a free API key at viz.greynoise.io.

Available Data

IP address information
geographic location
ASN and ISP data

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from GreyNoise",
    "description": "Query IPs in the GreyNoise dataset and retrieve a subset of the full IP context data",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

ip The IP address that was looked up.
noise True if the IP is a known internet scanner generating background noise.
riot True if the IP belongs to a known benign service (e.g., Google, Cloudflare).
classification GreyNoise classification: malicious, benign, or unknown.
name Human-readable name of the organization or scanner associated with the IP.

Implementation Example

const url = "https://docs.greynoise.io/reference/get_v3-community-ip";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

401 Unauthorized The key header is missing or the API key is incorrect.
Include the key header (not Authorization) with your GreyNoise API key in every request.
"ip not found" in response GreyNoise has no data for that IP because it has not been observed scanning the internet.
This is actually a useful result — it means the IP is not a known mass scanner and may deserve closer attention.
429 Rate Limited Community tier has strict rate limits (typically 50 requests per day).
Cache results locally and upgrade to a paid plan if you need to check large volumes of IPs.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 5/20
🔒 Security 15/15
🛠 Developer XP 12/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS UNKNOWN
Category Security
Difficulty Intermediate
Verified: 2026-04-04

Similar APIs

View All →