Shodan · Arazzo Workflow

Shodan Account Overview

Version 1.0.0

Pull the account profile, API plan limits, and the client's own IP.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub SecuritySearchInternetDevicesIoTVulnerabilitiesCVEAttack SurfaceThreat IntelligenceReconnaissanceNetworkDNSScanningPublic APIsArazzoWorkflows

Provider

shodan

Workflows

account-overview
Summarize the account profile, plan credits, and client IP.
Retrieves the account profile, the API plan information with remaining credits, and the client IP as seen by Shodan.
3 steps inputs: apiKey outputs: clientIp, displayName, plan, queryCredits, scanCredits
1
getProfile
Read the account profile, including membership status and display name.
2
getPlan
Retrieve the API plan information, including remaining query and scan credits and usage limits.
3
getClientIp
Report the IP address that the request was issued from.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Shodan Account Overview
  summary: Pull the account profile, API plan limits, and the client's own IP.
  description: >-
    An account onboarding and self-check pattern. The workflow reads the account
    profile, retrieves the API plan information including remaining query and
    scan credits, and reports the IP address the request was issued from. 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: accountApi
  url: ../openapi/shodan-account-api-openapi.yml
  type: openapi
- name: utilityApi
  url: ../openapi/shodan-utility-api-openapi.yml
  type: openapi
workflows:
- workflowId: account-overview
  summary: Summarize the account profile, plan credits, and client IP.
  description: >-
    Retrieves the account profile, the API plan information with remaining
    credits, and the client IP as seen by Shodan.
  inputs:
    type: object
    required:
    - apiKey
    properties:
      apiKey:
        type: string
        description: Shodan API key passed as the `key` query parameter.
  steps:
  - stepId: getProfile
    description: >-
      Read the account profile, including membership status and display name.
    operationId: getAccountProfile
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      member: $response.body#/member
      displayName: $response.body#/display_name
      credits: $response.body#/credits
  - stepId: getPlan
    description: >-
      Retrieve the API plan information, including remaining query and scan
      credits and usage limits.
    operationId: getApiInfo
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      plan: $response.body#/plan
      queryCredits: $response.body#/query_credits
      scanCredits: $response.body#/scan_credits
      monitoredIps: $response.body#/monitored_ips
  - stepId: getClientIp
    description: >-
      Report the IP address that the request was issued from.
    operationId: getMyIp
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      clientIp: $response.body
  outputs:
    displayName: $steps.getProfile.outputs.displayName
    plan: $steps.getPlan.outputs.plan
    queryCredits: $steps.getPlan.outputs.queryCredits
    scanCredits: $steps.getPlan.outputs.scanCredits
    clientIp: $steps.getClientIp.outputs.clientIp

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/shodan-account-overview-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.