GreyNoise Intelligence · Arazzo Workflow

GreyNoise IP Quick Triage

Version 1.0.0

Quickly classify an IP, then pull full context only when it is worth it.

1 workflow 1 source API 1 provider
View Spec View on GitHub SecurityThreat IntelligenceCybersecurityIP ReputationVulnerability ManagementNetwork TelemetrySOC AutomationPublic APIsArazzoWorkflows

Provider

greynoise

Workflows

ip-quick-triage
Quick-classify an IP then conditionally fetch full context.
Runs a quick IP lookup to obtain the classification, and only when the IP is flagged as malicious or unknown does it retrieve the full internet scanner and business service intelligence context.
2 steps inputs: apiKey, ip outputs: actor, classification, seen
1
quickCheck
Run a quick IP lookup that returns only the IP address and its classification or trust level for the fastest possible response.
2
fullContext
Retrieve the full IP context including metadata, associated actor, activity tags, and raw port scan and web request information.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: GreyNoise IP Quick Triage
  summary: Quickly classify an IP, then pull full context only when it is worth it.
  description: >-
    A fast two-stage triage for a single IP address. The workflow first runs a
    quick IP lookup that returns only the classification and trust level for a
    minimal-latency response, then branches on that classification: when the IP
    is malicious or unknown it pulls the full IP context (metadata, actor, tags,
    and raw scan data), and when the IP is benign it stops early to conserve
    quota. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: ipLookupApi
  url: ../openapi/greynoise-ip-lookup-api-openapi.yml
  type: openapi
workflows:
- workflowId: ip-quick-triage
  summary: Quick-classify an IP then conditionally fetch full context.
  description: >-
    Runs a quick IP lookup to obtain the classification, and only when the IP is
    flagged as malicious or unknown does it retrieve the full internet scanner
    and business service intelligence context.
  inputs:
    type: object
    required:
    - apiKey
    - ip
    properties:
      apiKey:
        type: string
        description: GreyNoise API key passed via the 'key' HTTP header.
      ip:
        type: string
        description: The IPv4 address to triage (e.g. 8.8.8.8).
  steps:
  - stepId: quickCheck
    description: >-
      Run a quick IP lookup that returns only the IP address and its
      classification or trust level for the fastest possible response.
    operationId: V3IP
    parameters:
    - name: key
      in: header
      value: $inputs.apiKey
    - name: ip
      in: path
      value: $inputs.ip
    - name: quick
      in: query
      value: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      classification: $response.body#/internet_scanner_intelligence/classification
    onSuccess:
    - name: needsContext
      type: goto
      stepId: fullContext
      criteria:
      - context: $response.body
        condition: $.internet_scanner_intelligence.classification != "benign"
        type: jsonpath
    - name: benignDone
      type: end
      criteria:
      - context: $response.body
        condition: $.internet_scanner_intelligence.classification == "benign"
        type: jsonpath
  - stepId: fullContext
    description: >-
      Retrieve the full IP context including metadata, associated actor,
      activity tags, and raw port scan and web request information.
    operationId: V3IP
    parameters:
    - name: key
      in: header
      value: $inputs.apiKey
    - name: ip
      in: path
      value: $inputs.ip
    - name: quick
      in: query
      value: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ip: $response.body#/ip
      classification: $response.body#/internet_scanner_intelligence/classification
      actor: $response.body#/internet_scanner_intelligence/actor
      seen: $response.body#/internet_scanner_intelligence/seen
  outputs:
    classification: $steps.quickCheck.outputs.classification
    actor: $steps.fullContext.outputs.actor
    seen: $steps.fullContext.outputs.seen

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/greynoise-ip-quick-triage-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.