IPinfo · Arazzo Workflow

IPinfo Batch Enrich then Detail

Version 1.0.0

Bulk-enrich a list of IPs, then pull the full record for one focus IP.

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

Provider

ipinfo

Workflows

batch-then-detail
Bulk-enrich a list of IPs and then drill into one focus IP.
Submits a JSON array of IPs to the batch endpoint, then resolves the full IPinfo record for the supplied focus IP for deeper inspection.
2 steps inputs: focusIp, ips, token outputs: batchResults, focusIp, focusOrg
1
batchLookup
Submit the JSON array of IP addresses to the batch endpoint for a single bulk enrichment round-trip.
2
detailFocusIp
Return the full IPinfo record for the supplied focus IP so a caller can drill into a single address surveyed in the batch.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: IPinfo Batch Enrich then Detail
  summary: Bulk-enrich a list of IPs, then pull the full record for one focus IP.
  description: >-
    A scale-out enrichment flow. It first submits a list of IP addresses to the
    batch endpoint for a single round-trip bulk lookup, and then pulls the
    complete IPinfo record for one focus IP from that list so a caller can drill
    into a single address after surveying the batch. 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: generalApi
  url: ../openapi/ipinfo-general-api-openapi.yml
  type: openapi
workflows:
- workflowId: batch-then-detail
  summary: Bulk-enrich a list of IPs and then drill into one focus IP.
  description: >-
    Submits a JSON array of IPs to the batch endpoint, then resolves the full
    IPinfo record for the supplied focus IP for deeper inspection.
  inputs:
    type: object
    required:
    - ips
    - focusIp
    - token
    properties:
      ips:
        type: array
        items:
          type: string
        description: A JSON array of IPv4/IPv6 addresses (optionally with /field paths).
      focusIp:
        type: string
        description: One IP from the batch to inspect in full detail afterward.
      token:
        type: string
        description: IPinfo API access token used to authorize each request.
  steps:
  - stepId: batchLookup
    description: >-
      Submit the JSON array of IP addresses to the batch endpoint for a single
      bulk enrichment round-trip.
    operationId: batch
    parameters:
    - name: token
      in: query
      value: $inputs.token
    requestBody:
      contentType: application/json
      payload: $inputs.ips
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      results: $response.body
  - stepId: detailFocusIp
    description: >-
      Return the full IPinfo record for the supplied focus IP so a caller can
      drill into a single address surveyed in the batch.
    operationId: getInformationByIp
    parameters:
    - name: ip
      in: path
      value: $inputs.focusIp
    - name: token
      in: query
      value: $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ip: $response.body#/ip
      city: $response.body#/city
      country: $response.body#/country
      org: $response.body#/org
  outputs:
    batchResults: $steps.batchLookup.outputs.results
    focusIp: $steps.detailFocusIp.outputs.ip
    focusOrg: $steps.detailFocusIp.outputs.org

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-batch-then-detail-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.