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/xerox-status-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: Xerox Public Print EULA Status API
description: REST API for managing print jobs through the Xerox Public Print Service. Provides endpoints for job creation, status monitoring, site discovery, provider management, EULA handling, and print history management. All secure calls require xrxauth, user-email, and appid headers. If user-email is omitted the request is treated as an application request.
version: 5.5.0
contact:
name: Xerox Developer Program
url: https://www.xerox.com/en-us/about/developer-program
email: xerox.global.developer.program@xerox.com
termsOfService: https://www.xerox.com/en-us/about/legal
servers:
- url: https://publicprintapi.services.xerox.com/api/v1
description: Xerox Public Print API Production Server
security:
- xrxauth: []
tags:
- name: Status
description: Health and status monitoring
paths:
/Status:
get:
operationId: getStatus
summary: Get API Status
description: Health check endpoint for monitoring the Xerox Public Print API status.
tags:
- Status
responses:
'200':
description: API is healthy
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
components:
schemas:
StatusResponse:
type: object
description: API health status
properties:
status:
type: string
description: Health status (OK, Degraded, etc.)
timestamp:
type: string
format: date-time
description: Time of status check
securitySchemes:
xrxauth:
type: apiKey
in: header
name: xrxauth
description: Xerox authentication credentials
userEmail:
type: apiKey
in: header
name: user-email
description: User email address for user-context requests
appId:
type: apiKey
in: header
name: appid
description: Application identifier
externalDocs:
description: Xerox Public Print API Documentation
url: https://publicprintapi.services.xerox.com/