List available printers
List printers visible through connected CloudPrint agents and select a stable printer ID for a workflow.
What this endpoint does
List printers visible through connected CloudPrint agents and select a stable printer ID for a workflow.
Authentication
Send a short-lived access token in Authorization: Bearer <access_token>.
Required scopes: printers:read
Request
Production base URL: https://public-api.cloudprint.me/api/v1/printers
Parameters
| Name | Location | Type | Required | Description | Constraints |
|---|---|---|---|---|---|
limit | query | integer | no | Maximum number of resources to return on one page. | min: 1; max: 100; default: 100 |
cursor | query | string | null | no | Opaque cursor for the requested result page; reuse it unchanged. | — |
X-Request-Id | header | string | no | Optional request identifier for tracing; CloudPrint returns a safe value in the response header. | maxLength: 128; example: "order-100045-attempt-1" |
Request body
This endpoint has no request body.
Example requests
cURL
bash
curl -sS 'https://public-api.cloudprint.me/api/v1/printers?limit=100' \
-H "Authorization: Bearer $ACCESS_TOKEN"Response
HTTP status: 200 — Account printers
Response fields
| Name | Type | Required | Description | Constraints |
|---|---|---|---|---|
printers | array | yes | Printers discovered through agents connected to the current account. | — |
next_cursor | string | null | yes | Opaque cursor for the next result page; send it back unchanged. | — |
Example response
json
{
"printers": [
{
"printer_id": "11111111-1111-4111-8111-111111111111",
"agent_id": "11111111-1111-4111-8111-111111111111",
"local_identifier": "zebra-zd421-usb-001",
"name": "Warehouse Label Printer",
"status": "online",
"last_seen_at": "2026-08-06T12:00:00Z",
"agent_name": "Warehouse PC agent",
"agent_hostname": "warehouse-pc",
"agent_status": "online",
"agent_last_seen_at": "2026-08-06T12:00:00Z",
"capabilities": {
"backend": "windows_native",
"language_profiles": [
{
"language": "zpl",
"version": "zpl2",
"supported_commands": [
"gf"
],
"max_bitmap_width_dots": 812,
"max_bitmap_height_dots": 1199,
"compression_modes": [
"ascii-hex"
],
"codepage": "utf-8"
}
],
"supports_custom_media": true,
"supports_orientation": true,
"supports_copies": true,
"supports_duplex": true,
"supports_color": true,
"supports_scaling": true,
"supports_offsets": true,
"supports_printable_area": true,
"supported_dpi": [
1
],
"supported_media_sizes": [
{
"width_mm": 0,
"height_mm": 0
}
],
"supported_feed_types": [
"gap"
],
"darkness_min": 0,
"darkness_max": 30,
"speed_min": 1,
"speed_max": 14
},
"endpoint": {
"system_print_available": true,
"raw_passthrough_available": true,
"configuration_issue": "interactive_output_port",
"os": "linux",
"driver_name": "CUPS",
"port_name": "ipp://printer.local/ipp/print",
"print_processor": "cups",
"data_type": "RAW",
"connection_type": "cups",
"default_media_profile_id": "string",
"default_media_profile": {
"width_mm": 100,
"height_mm": 150,
"dpi": 203,
"orientation": "default",
"feed_type": "gap",
"darkness": 15,
"speed": 4
}
},
"status_evidence": {
"source": "unknown",
"reasons": [
"configured_offline"
]
}
}
],
"next_cursor": "string"
}Errors
| HTTP status | Description |
|---|---|
401 | OAuth bearer token is missing or invalid |
403 | OAuth bearer token does not include printers:read |
422 | Pagination parameters are invalid |
429 | Rate limit exceeded |
500 | Unexpected error |
Integration guidance
- Persist
printer_id; a local queue name is display text and can change. - Check status, capabilities and endpoint data before offering RAW, duplex, color, media-size or DPI options.
Related documentation
Local Printer API for web and SaaS applicationsConnect a web or SaaS backend to local printers through CloudPrint Agent, discover printer queues via API and route jobs by stable printer ID.Upload a document for printingUpload a print-ready PDF or explicit RAW printer-language payload before creating a CloudPrint print job.Create a print jobSend an uploaded CloudPrint document to a selected printer with idempotency and explicit print options.