Shodan · Arazzo Workflow

Shodan Domain Reconnaissance

Version 1.0.0

Enumerate a domain's DNS records, resolve a subdomain, and inspect the host.

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

Provider

shodan

Workflows

domain-recon
Map a domain's DNS footprint and inspect a resolved host.
Retrieves the DNS information for a domain, resolves a chosen hostname to an IP, and inspects the resulting host in Shodan.
3 steps inputs: apiKey, domain, hostname, resolvedIp outputs: dnsInfo, ports, resolution
1
domainDns
Retrieve the subdomains and DNS entries known for the domain.
2
resolveHostname
Resolve the chosen hostname under the domain to its IP address. The response is a map of hostname to IP address.
3
hostInfo
Retrieve the full Shodan host record for the resolved IP.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Shodan Domain Reconnaissance
  summary: Enumerate a domain's DNS records, resolve a subdomain, and inspect the host.
  description: >-
    A domain footprinting pattern. The workflow pulls the known subdomains and
    DNS entries for a domain, resolves a chosen hostname to an IP, and then
    retrieves the full Shodan host record for that IP. 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: dnsApi
  url: ../openapi/shodan-dns-api-openapi.yml
  type: openapi
- name: searchMethodsApi
  url: ../openapi/shodan-search-methods-api-openapi.yml
  type: openapi
workflows:
- workflowId: domain-recon
  summary: Map a domain's DNS footprint and inspect a resolved host.
  description: >-
    Retrieves the DNS information for a domain, resolves a chosen hostname to an
    IP, and inspects the resulting host in Shodan.
  inputs:
    type: object
    required:
    - apiKey
    - domain
    - hostname
    - resolvedIp
    properties:
      apiKey:
        type: string
        description: Shodan API key passed as the `key` query parameter.
      domain:
        type: string
        description: The apex domain to enumerate (e.g. "example.com").
      hostname:
        type: string
        description: A hostname under the domain to resolve (e.g. "www.example.com").
      resolvedIp:
        type: string
        description: >-
          The IP returned by the resolve step for the chosen hostname. The
          resolver responds with a map keyed by hostname, so the chosen IP is
          carried forward through this input for the host lookup.
  steps:
  - stepId: domainDns
    description: >-
      Retrieve the subdomains and DNS entries known for the domain.
    operationId: getDomainDns
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    - name: domain
      in: path
      value: $inputs.domain
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dnsInfo: $response.body
  - stepId: resolveHostname
    description: >-
      Resolve the chosen hostname under the domain to its IP address. The
      response is a map of hostname to IP address.
    operationId: resolveHostnames
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    - name: hostnames
      in: query
      value: $inputs.hostname
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      resolution: $response.body
  - stepId: hostInfo
    description: >-
      Retrieve the full Shodan host record for the resolved IP.
    operationId: getHost
    parameters:
    - name: key
      in: query
      value: $inputs.apiKey
    - name: ip
      in: path
      value: $inputs.resolvedIp
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ports: $response.body#/ports
      vulns: $response.body#/vulns
  outputs:
    dnsInfo: $steps.domainDns.outputs.dnsInfo
    resolution: $steps.resolveHostname.outputs.resolution
    ports: $steps.hostInfo.outputs.ports

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-domain-recon-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.