Work with this as data
Every API 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 apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/hp-devices-api"
All apis
curl "https://apis.io/api/v1/apis?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.
OpenAPI Specification
openapi: 3.2.0
info:
title: Hp Devices API
version: 1.0.0
contact:
name: HP Developer Portal
url: https://developers.hp.com/
description: 'Operations tagged Devices across 2 of this provider''s published API definitions: hp-printos-device-api-openapi.yml, hp-workforce-solutions-analytics-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://printos.api.hp.com
description: Production
- url: https://daas.api.hp.com
description: Production
tags:
- name: Devices
description: Print device management operations
paths:
/devices:
get:
operationId: listDevices
summary: List Devices
description: Retrieve a list of provisioned print devices.
tags:
- Devices
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/PrintDeviceList'
post:
operationId: provisionDevice
summary: Provision Device
description: Register a new device with the PrintOS Cloud Platform.
tags:
- Devices
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DeviceProvisionRequest'
responses:
'201':
description: Device provisioned
content:
application/json:
schema:
$ref: '#/components/schemas/PrintDevice'
servers:
- url: https://printos.api.hp.com
description: Production
/devices/{deviceId}/status:
put:
operationId: updateDeviceStatus
summary: Update Device Status
description: Send device status update to the platform.
tags:
- Devices
parameters:
- name: deviceId
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DeviceStatusUpdate'
responses:
'200':
description: Status updated
servers:
- url: https://printos.api.hp.com
description: Production
components:
schemas:
PrintDeviceList:
type: object
properties:
devices:
type: array
items:
$ref: '#/components/schemas/PrintDevice'
DeviceProvisionRequest:
type: object
properties:
model:
type: string
serialNumber:
type: string
location:
type: string
DeviceStatusUpdate:
type: object
properties:
status:
type: string
metrics:
type: object
properties:
pagesTotal:
type: integer
inkLevel:
type: number
PrintDevice:
type: object
properties:
id:
type: string
model:
type: string
serialNumber:
type: string
status:
type: string
registeredAt:
type: string
format: date-time
Device:
type: object
properties:
id:
type: string
model:
type: string
serialNumber:
type: string
status:
type: string
DeviceList:
type: object
properties:
devices:
type: array
items:
$ref: '#/components/schemas/Device'
x-refined-from:
- hp-printos-device-api-openapi.yml
- hp-workforce-solutions-analytics-api-openapi.yml