MobileAPI.dev · Arazzo Workflow

MobileAPI Search Device and Load Full Detail

Version 1.0.0

Search the catalog by device name, then load the full record and gallery images for the best match.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISoftware-as-a-ServiceArazzoWorkflows

Provider

mobileapi-dev

Workflows

search-device-and-load-detail
Search by device name and load the full record plus gallery images for the top match.
Searches the catalog for the supplied device name returning the single best match, reads the full device record by id, and retrieves the device's full-resolution image gallery.
3 steps inputs: apiKey, imageLimit, manufacturer, name outputs: deviceId, deviceName, deviceType, primaryImageUrl
1
findDevice
Search the catalog by device name, returning only the single best match so the workflow can resolve a concrete device id.
2
readDevice
Read the full device record by the id resolved from the search, returning the complete specification block for the device.
3
loadImages
Retrieve the device's full-resolution gallery images. Accessing image URLs consumes credits; the first entry is the main device image.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: MobileAPI Search Device and Load Full Detail
  summary: Search the catalog by device name, then load the full record and gallery images for the best match.
  description: >-
    Resolves a human-supplied device name into a concrete catalog record. The
    workflow searches MobileAPI by name (limiting to the single best match),
    reads the full device record by its id, and then pulls the device's
    full-resolution gallery images. 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: devicesApi
  url: ../openapi/mobileapi-dev-devices-api-openapi.yml
  type: openapi
workflows:
- workflowId: search-device-and-load-detail
  summary: Search by device name and load the full record plus gallery images for the top match.
  description: >-
    Searches the catalog for the supplied device name returning the single best
    match, reads the full device record by id, and retrieves the device's
    full-resolution image gallery.
  inputs:
    type: object
    required:
    - apiKey
    - name
    properties:
      apiKey:
        type: string
        description: MobileAPI key, sent in the Authorization header as 'Token <apiKey>'.
      name:
        type: string
        description: Device name to search for (e.g. 'iPhone 15 Pro').
      manufacturer:
        type: string
        description: Optional manufacturer to constrain the search (e.g. 'Apple').
      imageLimit:
        type: integer
        description: Maximum number of gallery images to return (default 10, max 30).
  steps:
  - stepId: findDevice
    description: >-
      Search the catalog by device name, returning only the single best match
      so the workflow can resolve a concrete device id.
    operationId: devices_search
    parameters:
    - name: Authorization
      in: header
      value: "Token $inputs.apiKey"
    - name: name
      in: query
      value: $inputs.name
    - name: manufacturer
      in: query
      value: $inputs.manufacturer
    - name: limit
      in: query
      value: 1
    - name: exact
      in: query
      value: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deviceId: $response.body#/id
      deviceName: $response.body#/name
      manufacturerName: $response.body#/manufacturer_name
  - stepId: readDevice
    description: >-
      Read the full device record by the id resolved from the search,
      returning the complete specification block for the device.
    operationId: devices_read
    parameters:
    - name: id
      in: path
      value: $steps.findDevice.outputs.deviceId
    - name: Authorization
      in: header
      value: "Token $inputs.apiKey"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deviceType: $response.body#/device_type
      hardware: $response.body#/hardware
      releaseDate: $response.body#/release_date
  - stepId: loadImages
    description: >-
      Retrieve the device's full-resolution gallery images. Accessing image
      URLs consumes credits; the first entry is the main device image.
    operationId: devices_images
    parameters:
    - name: id
      in: path
      value: $steps.findDevice.outputs.deviceId
    - name: limit
      in: query
      value: $inputs.imageLimit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      primaryImageUrl: $response.body#/0/image_url
  outputs:
    deviceId: $steps.findDevice.outputs.deviceId
    deviceName: $steps.findDevice.outputs.deviceName
    deviceType: $steps.readDevice.outputs.deviceType
    primaryImageUrl: $steps.loadImages.outputs.primaryImageUrl

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/mobileapi-dev-search-device-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.