AbuseIPDB · Arazzo Workflow

AbuseIPDB Blacklist Triage

Version 1.0.0

Download the community blacklist and enrich its top entry with a full single-IP check.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Anti MalwareBlacklistCybersecurityIP ReputationNetwork SecurityPublic APIsThreat IntelligenceArazzoWorkflows

Provider

abuseipdb

Workflows

blacklist-triage
Pull the blacklist, then deep-check its first entry to enrich it before blocking.
Downloads the community blacklist at or above a supplied confidence minimum and, when at least one entry is returned, runs a verbose check on the first listed IP to retrieve its full abuse profile and recent reports.
2 steps inputs: apiKey, confidenceMinimum, limit, maxAgeInDays outputs: enrichedIp, enrichedScore, generatedAt
1
getBlacklist
Download the community blacklist at or above the supplied confidence floor and capture the first entry for enrichment.
2
enrichEntry
Run a verbose single-IP check on the first blacklist entry to pull its full reputation profile and recent reports before it is blocked.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: AbuseIPDB Blacklist Triage
  summary: Download the community blacklist and enrich its top entry with a full single-IP check.
  description: >-
    A feed-enrichment pattern. The workflow downloads the AbuseIPDB community
    blacklist filtered to a confidence floor, then takes the first entry from the
    returned feed and runs a verbose single-IP check against it to pull the full
    reputation profile before that address is pushed into a firewall or denylist.
    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: blacklistApi
  url: ../openapi/abuseipdb-blacklist-api-openapi.yml
  type: openapi
- name: reputationApi
  url: ../openapi/abuseipdb-reputation-api-openapi.yml
  type: openapi
workflows:
- workflowId: blacklist-triage
  summary: Pull the blacklist, then deep-check its first entry to enrich it before blocking.
  description: >-
    Downloads the community blacklist at or above a supplied confidence minimum
    and, when at least one entry is returned, runs a verbose check on the first
    listed IP to retrieve its full abuse profile and recent reports.
  inputs:
    type: object
    required:
    - apiKey
    properties:
      apiKey:
        type: string
        description: AbuseIPDB API key supplied via the Key header.
      confidenceMinimum:
        type: integer
        description: Minimum abuse confidence score for blacklist entries (25-100).
        default: 100
      limit:
        type: integer
        description: Maximum number of blacklist entries to return.
        default: 100
      maxAgeInDays:
        type: integer
        description: Restrict reports considered on the enrichment check to the last N days (1-365).
        default: 30
  steps:
  - stepId: getBlacklist
    description: >-
      Download the community blacklist at or above the supplied confidence floor
      and capture the first entry for enrichment.
    operationId: getBlacklist
    parameters:
    - name: Key
      in: header
      value: $inputs.apiKey
    - name: confidenceMinimum
      in: query
      value: $inputs.confidenceMinimum
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      generatedAt: $response.body#/meta/generatedAt
      firstIp: $response.body#/data/0/ipAddress
    onSuccess:
    - name: hasEntries
      type: goto
      stepId: enrichEntry
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: emptyList
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: enrichEntry
    description: >-
      Run a verbose single-IP check on the first blacklist entry to pull its full
      reputation profile and recent reports before it is blocked.
    operationId: checkIp
    parameters:
    - name: Key
      in: header
      value: $inputs.apiKey
    - name: ipAddress
      in: query
      value: $steps.getBlacklist.outputs.firstIp
    - name: maxAgeInDays
      in: query
      value: $inputs.maxAgeInDays
    - name: verbose
      in: query
      value: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ipAddress: $response.body#/data/ipAddress
      abuseConfidenceScore: $response.body#/data/abuseConfidenceScore
      countryCode: $response.body#/data/countryCode
      isp: $response.body#/data/isp
  outputs:
    generatedAt: $steps.getBlacklist.outputs.generatedAt
    enrichedIp: $steps.enrichEntry.outputs.ipAddress
    enrichedScore: $steps.enrichEntry.outputs.abuseConfidenceScore

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/abuseipdb-blacklist-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.