AbuseIPDB · Arazzo Workflow

AbuseIPDB Clear False Positive

Version 1.0.0

Check an IP and clear your own reports against it when it turns out to be whitelisted or clean.

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

Provider

abuseipdb

Workflows

clear-false-positive
Check an IP and clear your own reports for it when it is whitelisted.
Reads the IP's reputation and, when AbuseIPDB reports the address as whitelisted, clears all of the caller's own past reports for that address to retract a likely false positive.
2 steps inputs: apiKey, ipAddress, maxAgeInDays outputs: isWhitelisted, numReportsDeleted
1
checkIp
Look up the IP's reputation, in particular whether AbuseIPDB has whitelisted the address, to decide if past reports should be retracted.
2
clearAddress
Remove all of the caller's own past reports for the whitelisted IP address.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: AbuseIPDB Clear False Positive
  summary: Check an IP and clear your own reports against it when it turns out to be whitelisted or clean.
  description: >-
    A self-correction pattern for report hygiene. The workflow checks an IP's
    reputation and branches on whether AbuseIPDB considers it whitelisted: when
    the address is whitelisted (a likely false positive) it removes all of the
    caller's own past reports for that address, and otherwise it ends without
    touching anything. This keeps an account's reporting history accurate. 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: managementApi
  url: ../openapi/abuseipdb-management-api-openapi.yml
  type: openapi
- name: reputationApi
  url: ../openapi/abuseipdb-reputation-api-openapi.yml
  type: openapi
workflows:
- workflowId: clear-false-positive
  summary: Check an IP and clear your own reports for it when it is whitelisted.
  description: >-
    Reads the IP's reputation and, when AbuseIPDB reports the address as
    whitelisted, clears all of the caller's own past reports for that address to
    retract a likely false positive.
  inputs:
    type: object
    required:
    - apiKey
    - ipAddress
    properties:
      apiKey:
        type: string
        description: AbuseIPDB API key supplied via the Key header.
      ipAddress:
        type: string
        description: The IPv4 or IPv6 address to check and potentially clear reports for.
      maxAgeInDays:
        type: integer
        description: Restrict reports considered on the check to the last N days (1-365).
        default: 30
  steps:
  - stepId: checkIp
    description: >-
      Look up the IP's reputation, in particular whether AbuseIPDB has
      whitelisted the address, to decide if past reports should be retracted.
    operationId: checkIp
    parameters:
    - name: Key
      in: header
      value: $inputs.apiKey
    - name: ipAddress
      in: query
      value: $inputs.ipAddress
    - name: maxAgeInDays
      in: query
      value: $inputs.maxAgeInDays
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      isWhitelisted: $response.body#/data/isWhitelisted
      abuseConfidenceScore: $response.body#/data/abuseConfidenceScore
    onSuccess:
    - name: looksLikeFalsePositive
      type: goto
      stepId: clearAddress
      criteria:
      - context: $response.body
        condition: $.data.isWhitelisted == true
        type: jsonpath
    - name: keepReports
      type: end
      criteria:
      - context: $response.body
        condition: $.data.isWhitelisted != true
        type: jsonpath
  - stepId: clearAddress
    description: >-
      Remove all of the caller's own past reports for the whitelisted IP address.
    operationId: clearAddress
    parameters:
    - name: Key
      in: header
      value: $inputs.apiKey
    - name: ipAddress
      in: query
      value: $inputs.ipAddress
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      numReportsDeleted: $response.body#/data/numReportsDeleted
  outputs:
    isWhitelisted: $steps.checkIp.outputs.isWhitelisted
    numReportsDeleted: $steps.clearAddress.outputs.numReportsDeleted

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-clear-false-positive-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.