IPinfo · Arazzo Workflow

IPinfo ASN Prefix Reconnaissance

Version 1.0.0

Verify token access, then pull ASN detail and the domain ranges behind it.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopmentArazzoWorkflows

Provider

ipinfo

Workflows

asn-prefix-recon
Verify the token, resolve ASN detail, and list the domain's IP ranges.
Confirms token access, returns full information about an ASN including its related domain, and resolves the IP ranges associated with that domain.
3 steps inputs: asn, token outputs: asnDomain, asnName, numRanges, ranges
1
verifyToken
Call the /me endpoint to verify the access token and report its request limits and product access before running ASN lookups.
2
getAsnDetail
Return full information about the ASN, including registry, allocation, prefixes, peers, and the related domain used for range lookup.
3
resolveRanges
Return the IP ranges associated with the ASN's related domain to map the address space operated under that organization.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: IPinfo ASN Prefix Reconnaissance
  summary: Verify token access, then pull ASN detail and the domain ranges behind it.
  description: >-
    A network reconnaissance flow. It first verifies the access token and its
    product entitlements with the /me endpoint, then pulls full detail for an
    Autonomous System (registry, allocation, prefixes, peers, and the related
    domain), and finally resolves the IP ranges associated with that ASN's
    related domain. Each step spells out its request inline, including the access
    token, so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: asnApi
  url: ../openapi/ipinfo-asn-api-openapi.yml
  type: openapi
- name: generalApi
  url: ../openapi/ipinfo-general-api-openapi.yml
  type: openapi
- name: rangesApi
  url: ../openapi/ipinfo-ranges-api-openapi.yml
  type: openapi
workflows:
- workflowId: asn-prefix-recon
  summary: Verify the token, resolve ASN detail, and list the domain's IP ranges.
  description: >-
    Confirms token access, returns full information about an ASN including its
    related domain, and resolves the IP ranges associated with that domain.
  inputs:
    type: object
    required:
    - asn
    - token
    properties:
      asn:
        type: integer
        description: An ASN number (integer) to investigate, e.g. 10507.
      token:
        type: string
        description: IPinfo API access token used to authorize each request.
  steps:
  - stepId: verifyToken
    description: >-
      Call the /me endpoint to verify the access token and report its request
      limits and product access before running ASN lookups.
    operationId: getMe
    parameters:
    - name: token
      in: query
      value: $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
  - stepId: getAsnDetail
    description: >-
      Return full information about the ASN, including registry, allocation,
      prefixes, peers, and the related domain used for range lookup.
    operationId: getAsn
    parameters:
    - name: asn
      in: path
      value: $inputs.asn
    - name: token
      in: query
      value: $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      asnName: $response.body#/name
      asnDomain: $response.body#/domain
      asnCountry: $response.body#/country
  - stepId: resolveRanges
    description: >-
      Return the IP ranges associated with the ASN's related domain to map the
      address space operated under that organization.
    operationId: getRanges
    parameters:
    - name: domain
      in: path
      value: $steps.getAsnDetail.outputs.asnDomain
    - name: token
      in: query
      value: $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      numRanges: $response.body#/num_ranges
      ranges: $response.body#/ranges
  outputs:
    asnName: $steps.getAsnDetail.outputs.asnName
    asnDomain: $steps.getAsnDetail.outputs.asnDomain
    numRanges: $steps.resolveRanges.outputs.numRanges
    ranges: $steps.resolveRanges.outputs.ranges

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/ipinfo-asn-prefix-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.