GreyNoise Intelligence · Arazzo Workflow

GreyNoise Bulk IP Triage

Version 1.0.0

Quick-lookup a batch of IPs, then deep-context the first flagged one.

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

Provider

greynoise

Workflows

bulk-ip-triage
Quick multi-IP lookup then deep-context the first flagged IP.
Submits a batch of IPs for a quick multi lookup and, when the first record is malicious or unknown, retrieves the full IP context for that address.
2 steps inputs: apiKey, ips outputs: actor, firstClassification, firstIp
1
bulkLookup
Run a quick multi-IP lookup over the submitted set of addresses, returning only the classification or trust level per IP for a fast response.
2
contextFlagged
Retrieve the full IP context for the first flagged IP, including metadata, associated actor, activity tags, and raw scan data.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: GreyNoise Bulk IP Triage
  summary: Quick-lookup a batch of IPs, then deep-context the first flagged one.
  description: >-
    Triages many IPs at once and drills into the first that matters. The
    workflow first runs a quick multi-IP lookup over a submitted set of
    addresses, branches on whether the first returned record is non-benign, and
    when so pulls the full IP context for that first address. 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: bulk-ip-triage
  summary: Quick multi-IP lookup then deep-context the first flagged IP.
  description: >-
    Submits a batch of IPs for a quick multi lookup and, when the first record
    is malicious or unknown, retrieves the full IP context for that address.
  inputs:
    type: object
    required:
    - apiKey
    - ips
    properties:
      apiKey:
        type: string
        description: GreyNoise API key passed via the 'key' HTTP header.
      ips:
        type: array
        description: The set of IPv4 addresses to look up (up to 10,000).
        items:
          type: string
  steps:
  - stepId: bulkLookup
    description: >-
      Run a quick multi-IP lookup over the submitted set of addresses, returning
      only the classification or trust level per IP for a fast response.
    operationId: V3MultiIP
    parameters:
    - name: key
      in: header
      value: $inputs.apiKey
    - name: quick
      in: query
      value: true
    requestBody:
      contentType: application/json
      payload:
        ips: $inputs.ips
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstIp: $response.body#/data/0/ip
      firstClassification: $response.body#/data/0/internet_scanner_intelligence/classification
    onSuccess:
    - name: firstFlagged
      type: goto
      stepId: contextFlagged
      criteria:
      - context: $response.body
        condition: $.data[0].internet_scanner_intelligence.classification != "benign"
        type: jsonpath
    - name: firstBenign
      type: end
      criteria:
      - context: $response.body
        condition: $.data[0].internet_scanner_intelligence.classification == "benign"
        type: jsonpath
  - stepId: contextFlagged
    description: >-
      Retrieve the full IP context for the first flagged IP, including metadata,
      associated actor, activity tags, and raw scan data.
    operationId: V3IP
    parameters:
    - name: key
      in: header
      value: $inputs.apiKey
    - name: ip
      in: path
      value: $steps.bulkLookup.outputs.firstIp
    - 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
  outputs:
    firstIp: $steps.bulkLookup.outputs.firstIp
    firstClassification: $steps.bulkLookup.outputs.firstClassification
    actor: $steps.contextFlagged.outputs.actor

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-bulk-ip-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.