Methods
Methods are used to execute actions and request data back from the API.
Access
Each method below identifies which clients may call it:
- All clients: localhost, paired admin, paired member, and unpaired remote clients accepted by the API transport.
- Localhost or any paired client: localhost and any paired client, member included. Unpaired remote clients are rejected.
profiles.manage: localhost and clients with theprofiles.managecapability. Paired admins have this capability; paired members do not. Unpaired remote clients retain it for backward compatibility when encryption is disabled.settings.write: localhost and clients with thesettings.writecapability. Paired admins have this capability; paired members do not. Unpaired remote clients retain it for backward compatibility when encryption is disabled.update.apply: localhost and clients with theupdate.applycapability. Paired admins have this capability; paired members and unpaired remote clients do not.- Localhost or paired admin: localhost and authenticated paired admins only. Paired members and unpaired remote clients are rejected.
- Localhost only: requests originating from Core's device. All remote clients are rejected.
Use clients.current to inspect current connection's paired role and effective capabilities. A method may also require a resource-specific credential, such as a profile PIN; those requirements are documented separately from connection access.
Launching
run
Access: All clients.
Emulate the scanning of a token.
Parameters
Accepts two types of parameters:
- A string, in which case the string will be treated as the token text with all other options set as default.
- An object:
| Key | Type | Required | Description |
|---|---|---|---|
| type | string | No | An internal category of the type of token being scanned. Not currently in use outside of logging. |
| uid | string | No* | The UID of the token being scanned. For example, the UID of an NFC tag. Used for matching mappings. |
| text | string | No* | The main text to be processed from a scan, should contain ZapScript. |
| data | string | No* | The raw data read from a token, converted to a hexadecimal string. Used in mappings and detection of NFC toys. |
| unsafe | boolean | No | Allow unsafe operations. Default is false. |
These parameters allow emulating a token exactly as it would be read directly from an attached reader on the server. A request's parameters must contain at least a populated uid, text or data value.
Result
Returns null on success.
Currently, it is not reported if the launched ZapScript encountered an error during launching, and the method will return before execution of ZapScript is complete.
For ZapScript launch.random, Core selects uniformly from matching non-missing media rows after applying systems, tags, and path scope. Filesystem and virtual path targets recursively include subfolders. Tagged requests never use filesystem fallback because unindexed files have no tag metadata.
Example
Request
{
"jsonrpc": "2.0",
"id": "52f6242e-7a5a-11ef-bf93-020304050607",
"method": "run",
"params": {
"text": "**launch.system:snes"
}
}
Response
{
"jsonrpc": "2.0",
"id": "52f6242e-7a5a-11ef-bf93-020304050607",
"result": null
}
stop
Access: All clients.
Kill any active launcher, if possible.
This method is highly dependant on the platform and specific launcher used. It's not guaranteed that a launcher is capable of killing the playing process.
Parameters
None.
Result
Returns null on success.
Currently, it is not reported if a process was killed or not.
Example
Request
{
"jsonrpc": "2.0",
"id": "176b4558-7a5b-11ef-b318-020304050607",
"method": "stop"
}
Response
{
"jsonrpc": "2.0",
"id": "176b4558-7a5b-11ef-b318-020304050607",
"result": null
}
confirm
Access: All clients.
Confirm and launch a staged token from the launch guard.
When launch guard is enabled and media is playing, scanned tokens are staged instead of launched immediately. This method confirms the currently staged token and launches it.
Parameters
None.
Result
Returns null on success. Returns an error if no token is currently staged.
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5b-11ef-b318-020304050607",
"method": "confirm"
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5b-11ef-b318-020304050607",
"result": null
}
UI
Core exposes transient UI requests so connected clients—and host platform when appropriate—can render same notice, loader, picker, or confirmation in parallel. Core initially keeps at most one active request, but API uses arrays for future expansion. First valid response for event ID wins; stale responses fail.
UI events are intended for small, non-sensitive interactions. They are broadcast to every permitted connected client. Never use them for PINs, passwords, recovery codes, or other secrets.
ui
Access: All clients.
Returns authoritative UI event state. Clients should call this after connecting or reconnecting.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| revision | number | Yes | Monotonic revision of global UI state shared across clients. Ignore older snapshots. |
| events | UI event[] | Yes | Active events. Initial implementation contains zero or one event. |
| resolved | UI resolution[] | Yes | Always empty in query response; terminal resolutions are delivered by ui.changed. |
UI event object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Opaque event ID required by ui.respond. |
| kind | string | Yes | notice, loader, picker, or confirm. |
| title | string | No | Optional heading. |
| message | string | No | Optional body text. |
| choices | object[] | No | Picker choices containing opaque id and display label. |
| selectedChoiceId | string | No | Initially selected picker choice. |
| dismissible | boolean | Yes | Whether dismiss is accepted. |
| createdAt | string | Yes | RFC3339 creation timestamp. |
| expiresAt | string | No | Authoritative RFC3339 expiry. Omitted for producer-controlled events such as loaders. |
Choice IDs are presentation-safe. Executable ZapScript and private choice values remain inside Core.
Example
{
"jsonrpc": "2.0",
"id": "ui-state-1",
"method": "ui"
}
{
"jsonrpc": "2.0",
"id": "ui-state-1",
"result": {
"revision": 8,
"events": [
{
"id": "56969e9c-f863-4cc8-9c2c-d7512bf10d4d",
"kind": "confirm",
"title": "Change game?",
"message": "**launch.system:snes",
"dismissible": true,
"createdAt": "2026-07-16T12:00:00Z",
"expiresAt": "2026-07-16T12:00:15Z"
}
],
"resolved": []
}
}
ui.respond
Access: All clients.
Responds to active UI event. First valid response wins globally and closes host/client renderers.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Active event ID. |
| action | string | Yes | dismiss, select, or confirm. |
| choiceId | string | No | Required for picker select; must identify one published choice. |
Allowed actions:
notice:dismisswhen dismissibleloader:dismissonly when explicitly dismissiblepicker:selectwithchoiceId, ordismissconfirm:confirm, ordismisswhen dismissible
Returns null when accepted. Returns client error for stale event ID, invalid action, missing/unknown choice, expired event, or non-dismissible event.
Example
{
"jsonrpc": "2.0",
"id": "ui-response-1",
"method": "ui.respond",
"params": {
"id": "56969e9c-f863-4cc8-9c2c-d7512bf10d4d",
"action": "confirm"
}
}
{
"jsonrpc": "2.0",
"id": "ui-response-1",
"result": null
}
Top-level confirm remains launch-guard-specific for compatibility. It cannot confirm unrelated generic UI event.
UI resolution object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Resolved event ID. |
| outcome | string | Yes | confirmed, selected, dismissed, timed_out, completed, superseded, or cancelled. |
| choiceId | string | No | Selected opaque choice ID for selected. |
Tokens
tokens
Access: All clients.
Returns information about active and last scanned tokens.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| active | TokenResponse[] | Yes | A list of currently active tokens. |
| last | TokenResponse | No | The last scanned token. Null if no token has been scanned yet. |
Token object
| Key | Type | Required | Description |
|---|---|---|---|
| type | string | Yes | Type of token. |
| uid | string | Yes | UID of the token. |
| text | string | Yes | Text content of the token. |
| data | string | Yes | Raw data of the token as hexadecimal string. |
| scanTime | string | Yes | Timestamp of when the token was scanned in RFC3339 format. |
| readerId | string | No | ID of the reader that scanned the token. |
Example
Request
{
"jsonrpc": "2.0",
"id": "5e9f3a0e-7a5b-11ef-8084-020304050607",
"method": "tokens"
}
Response
{
"jsonrpc": "2.0",
"id": "5e9f3a0e-7a5b-11ef-8084-020304050607",
"result": {
"active": [],
"last": {
"type": "",
"uid": "",
"text": "**launch.system:snes",
"data": "",
"scanTime": "2024-09-24T17:49:42.938167429+08:00"
}
}
}
tokens.history
Access: All clients.
Returns a list of the last recorded token launches.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| entries | LaunchEntry[] | Yes | A list of recorded token launches. |
Launch entry object
| Key | Type | Required | Description |
|---|---|---|---|
| data | string | Yes | Raw data of the token as hexadecimal string. |
| success | boolean | Yes | True if the launch was successful. |
| text | string | Yes | Text content of the token. |
| time | string | Yes | Timestamp of the launch time in RFC3339 format. |
| type | string | Yes | Type of token. |
| uid | string | Yes | UID of the token. |
Example
Request
{
"jsonrpc": "2.0",
"id": "5e9f3a0e-7a5b-11ef-8084-020304050607",
"method": "tokens.history"
}
Response
{
"jsonrpc": "2.0",
"id": "5e9f3a0e-7a5b-11ef-8084-020304050607",
"result": {
"entries": [
{
"data": "",
"success": true,
"text": "**launch.system:snes",
"time": "2024-09-24T17:49:42.938167429+08:00",
"type": "",
"uid": ""
}
]
}
}
Media
media
Access: All clients.
Returns the current media database status and active media.
The database status includes both indexing and optimization information:
- Indexing takes priority over optimization in the response (if both are running, only indexing status is shown)
- Optimization status and progress are shown when no indexing is in progress
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| database | IndexingStatus | Yes | Status of the media database. |
| active | ActiveMedia[] | Yes | List of currently active media. |
| playlists | PlaylistState[] | No | Currently active playlist slots. |
Indexing status object
| Key | Type | Required | Description |
|---|---|---|---|
| exists | boolean | Yes | True if the database exists. |
| indexing | boolean | Yes | True if indexing is currently in progress. |
| optimizing | boolean | Yes | True if database optimization is currently in progress. |
| totalSteps | number | No | Total number of indexing steps. |
| currentStep | number | No | Current indexing step. |
| currentStepDisplay | string | No | Display name of the current indexing step or optimization step. |
| totalFiles | number | No | Total number of files to index. |
| totalMedia | number | No | Total number of media entries in the database. Only included when database exists and is not indexing. |
Active media object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID for efficient follow-up media.meta and media.image requests. Omitted when the active path cannot be resolved in the current media database. |
| launcherId | string | Yes | ID of the launcher. |
| systemId | string | Yes | ID of the system. |
| systemName | string | Yes | Display name of the system. |
| mediaPath | string | Yes | Path to the media file. |
| relativePath | string | No | Launcher-relative convenience path, when it can be derived. Not a stable media identity. |
| positionMs | number | No | Current playback position in milliseconds when reported by the launcher. Currently available for native audio. |
| durationMs | number | No | Total playback duration in milliseconds when reported by the launcher. Currently available for native audio. |
| playbackState | string | No | Launcher-reported playback state: playing, paused, or stopped. Currently available for native audio; omitted when unavailable. |
| mediaName | string | Yes | Display name of the media. |
| slot | string | No | Media slot for the item. Omitted or primary is foreground media; background is background audio. |
| started | string | Yes | Timestamp when media started in RFC3339 format. |
| zapScript | string | Yes | ZapScript command to launch this media item. |
| launcherControls | string[] | No | List of control action names supported by the active launcher. Only present if the launcher supports controls. See media.control. |
Playlist state object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Playlist ID. |
| name | string | Yes | Playlist display name. |
| slot | string | Yes | Playlist slot, primary or background. |
| repeat | string | Yes | Repeat mode: none, all, or one. |
| items | object[] | Yes | Playlist items. |
| index | number | Yes | Zero-based current item index. |
| total | number | Yes | Total item count. |
| playing | boolean | Yes | Whether playlist slot is playing. |
Example
Request
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"method": "media"
}
Response (database ready)
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": {
"database": {
"exists": true,
"indexing": false,
"optimizing": false,
"totalMedia": 1337
},
"active": []
}
}
Response (optimization in progress)
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": {
"database": {
"exists": true,
"indexing": false,
"optimizing": true,
"currentStepDisplay": "vacuum",
"totalMedia": 1337
},
"active": []
}
}
media.search
Access: All clients.
Query the media database and return all matching indexed media.
Note: This API uses cursor-based pagination for all requests. The total field is deprecated and returns only the current response-page count; it is not the full match count. Use the pagination object to navigate through results. For subsequent pages, include the nextCursor value and repeat the same systems, pathPrefix, query, tags, letter, and sort scope.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| query | string | No | Case-insensitive search by filename. By default, query is split by white space and results are found which contain every word. If omitted, all media is returned. |
| systems | string[] | No | Case-sensitive list of system IDs to restrict search to. A missing key or empty list will search all systems. |
| pathPrefix | string | No | Recursively restrict results beneath a filesystem directory or virtual route. Matching respects path boundaries, so /roms/SNES does not include /roms/SNES2; % and _ are literal path characters. |
| maxResults | number | No | Max number of results to return. Default is 100. |
| cursor | string | No | Cursor for pagination. Omit for first page, use nextCursor from previous response for subsequent pages with the same scope and sort. |
| tags | string[] | No | Filter results by case-sensitive tags. Maximum 50 tags, each up to 128 characters. Default and + filters require matches, - excludes matches, and ~ joins alternatives. Can be used without query or systems for tag-only searches. |
| letter | string | No | Filter results by first character of game name. Supports: A-Z (single letters), "0-9" (numbers), "#" (symbols). Case-insensitive. |
| sort | string | No | Explicit order: name-asc, name-desc, filename-asc, or filename-desc. Name uses the returned display name with SQLite's case-insensitive collation; filename uses full indexed path. Omitted preserves legacy database order. |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs in the systems array (e.g., "snes" matches "SNES"). |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| results | Media[] | Yes | A list of all search results from the given query. |
| total | number | Yes | Deprecated: Returns the count of results in the current response page. Use pagination info for navigation. |
| pagination | Pagination | Yes | Pagination information for cursor-based navigation. |
Media object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID for efficient follow-up media.meta and media.image requests. |
| system | System | Yes | System which the media has been indexed under. |
| name | string | Yes | A human-readable version of the result's filename without a file extension. |
| path | string | Yes | Canonical indexed media path. Use with system.id for media.meta and media.image. |
| relativePath | string | No | Launcher-relative convenience path, when it can be derived. Not a stable media identity. |
| hasCover | boolean | Yes | Whether media-level or title-level image properties are available. |
| zapScript | string | Yes | ZapScript command to launch this media item. Includes the disambiguating tags inline (e.g. @Arcade/X-Men Vs. Street Fighter (region:eu) (builddate:1996-10-04)) so the written command resolves back to this specific variant. |
| tags | TagInfo[] | Yes | Array of tags associated with this media item. |
| disambiguatingTags | TagInfo[] | No | Subset of tags whose values differ across same-named siblings of this title, ordered by display importance. Omitted when the title has nothing to disambiguate. Clients can render these to tell variants apart. |
System object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | No | Internal system ID for this system. |
| name | string | No | Display name of the system. |
| category | string | No | Category of system (e.g., "Console", "Computer"). Not yet formalised. |
| releaseDate | string | No | Release date of the system in ISO 8601 format (YYYY-MM-DD). |
| manufacturer | string | No | Manufacturer of the system (e.g., "Nintendo", "Sega"). |
| mediaCount | number | No | Populated only in systems responses; not included on System objects nested in media.search results. Exact non-missing indexed media-row count for this system, or exact matching count when systems.tags is set. Zero means the system is supported but empty. Omitted by older Core versions or when counts are unavailable. |
Pagination object
| Key | Type | Required | Description |
|---|---|---|---|
| nextCursor | string | No | Cursor for the next page of results. Omitted if no more pages available. |
| hasNextPage | boolean | Yes | Whether there are more results available after the current page. |
| pageSize | number | Yes | Number of results requested for this page (matches maxResults parameter). |
TagInfo object
| Key | Type | Required | Description |
|---|---|---|---|
| tag | string | Yes | The tag name. |
| type | string | Yes | The type/category of the tag (e.g., "genre", "year"). |
Example
Request
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"method": "media.search",
"params": {
"query": "240p"
}
}
Response
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": {
"results": [
{
"mediaId": 123,
"name": "240p Test Suite (PD) v0.03 tepples",
"path": "/media/fat/games/Gameboy/240p Test Suite (PD) v0.03 tepples.gb",
"relativePath": "Gameboy/240p Test Suite (PD) v0.03 tepples.gb",
"hasCover": false,
"zapScript": "@Gameboy/240p Test Suite (PD) v0.03 tepples",
"system": {
"category": "Handheld",
"id": "Gameboy",
"name": "Gameboy"
},
"tags": [
{
"tag": "test",
"type": "category"
},
{
"tag": "homebrew",
"type": "category"
}
]
}
],
"total": 1,
"pagination": {
"hasNextPage": false,
"pageSize": 100
}
}
}
Example with tag filtering
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5d-11ef-9c7b-020304050607",
"method": "media.search",
"params": {
"query": "mario",
"tags": ["platformer", "nintendo"],
"maxResults": 10
}
}
Response
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5d-11ef-9c7b-020304050607",
"result": {
"results": [
{
"mediaId": 456,
"name": "Super Mario Bros.",
"path": "/media/fat/games/NES/Super Mario Bros.nes",
"relativePath": "NES/Super Mario Bros.nes",
"hasCover": true,
"zapScript": "@NES/Super Mario Bros. (year:1985)",
"system": {
"category": "Console",
"id": "NES",
"name": "Nintendo Entertainment System"
},
"tags": [
{
"tag": "platformer",
"type": "genre"
},
{
"tag": "nintendo",
"type": "publisher"
},
{
"tag": "1985",
"type": "year"
}
]
}
],
"total": 1,
"pagination": {
"hasNextPage": false,
"pageSize": 10
}
}
}
media.browse
Access: All clients.
Browse indexed media content by directory, similar to navigating a file manager. Supports filesystem paths, virtual URI schemes (e.g. mame-arcade://), and paginated results.
When called without a path parameter (or with an empty path), returns top-level root entries including filesystem roots and virtual scheme roots. When systems is provided without path, returns populated launcher routes for those systems only. Pass the same systems filter when browsing a returned route to keep shared paths scoped to the selected systems.
Tags filter direct media files in the current path. Directories remain visible for navigation with unfiltered fileCount values, while totalFiles, file pagination, and cursors reflect only matching files. Tagged directory entries remain plain directories rather than being promoted to logical single-game aliases.
Parameters
All parameters are optional. When called with no parameters, returns root entries.
| Key | Type | Required | Description |
|---|---|---|---|
| path | string | No | Directory path to browse. Omit or set empty to list root entries. Supports filesystem paths and virtual URI schemes (e.g. mame-arcade://). |
| systems | string[] | No | Case-sensitive list of system IDs to restrict route discovery and browse results to. A missing key or empty list preserves unfiltered behavior. |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs in the systems array (e.g., "snes" matches "SNES"). |
| maxResults | number | No | Maximum results per page. Default is 100, maximum is 1000. |
| cursor | string | No | Opaque pagination cursor from a previous response's nextCursor. Omit for first page. Cursors are valid only with the same path, systems, tags, letter, and sort parameters. |
| tags | string[] | No | Filter direct media files by tags. Syntax and AND/NOT/OR operators match media.search. Directories remain unfiltered. |
| letter | string | No | Filter results to entries starting with this letter. |
| sort | string | No | Sort order. One of: name-asc (default), name-desc, filename-asc, filename-desc. Name sorting is prefix-aware for detected ranked/date collection folders. The filename variants sort by full file path. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| path | string | Yes | The browsed directory path. Empty string when listing roots. |
| entries | BrowseEntry[] | Yes | Array of entries in the current path. |
| totalFiles | number | Yes | Total count of media files in the current directory (respects tags and letter filters). |
| pagination | Pagination | No | Pagination info. Omitted when there are no file results. |
Browse entry object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID. Present on media entries, and on zip-as-directory platform directory entries whose direct contents collapse to one logical launch target, for efficient follow-up media.meta and media.image requests. |
| name | string | Yes | Display name of the entry. |
| path | string | Yes | Full path to the entry. |
| type | string | Yes | Entry type: root, directory, or media. |
| fileCount | number | No | Number of files in this directory. Present on root and directory entries, except a root entry whose exact count could not be computed in time (known non-empty, count omitted). |
| group | string | No | Launcher group name. Present on virtual scheme root entries. |
| systemId | string | No | System ID for the media or single-system filtered route (e.g. SNES). Present on media entries and filtered root entries when exactly one system applies. |
| systemIds | string[] | No | System IDs represented by a filtered root or directory entry. |
| zapScript | string | No | ZapScript command to launch this media. Present on media entries and logical single-game container directory entries on zip-as-directory platforms. |
| relativePath | string | No | Relative path from root directory. Present on media entries and logical single-game container directory entries on zip-as-directory platforms. |
| tags | object[] | No | Tags attached to the media. Each object has tag (string) and type (string). Present on media entries and logical single-game container directory entries on zip-as-directory platforms. |
| disambiguatingTags | object[] | No | Subset of tags whose values differ across same-named siblings of this title, ordered by display importance. Same object shape as tags. Omitted when the title has nothing to disambiguate. |
| hasCover | boolean | Yes | Whether media-level or title-level image properties are available. Meaningful for media-capable entries; clients can skip image requests when false. |
Browse pagination object
| Key | Type | Required | Description |
|---|---|---|---|
| hasNextPage | bool | Yes | Whether more results exist beyond the current page. |
| pageSize | number | Yes | The requested page size. |
| nextCursor | string | No | Opaque cursor for the next page. Absent on the last page. |
System route example
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "media.browse",
"params": {
"systems": ["SNES"]
}
}
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"path": "",
"entries": [
{
"name": "SNES",
"path": "/roms/SNES",
"type": "root",
"fileCount": 150,
"hasCover": false,
"systemId": "SNES",
"systemIds": ["SNES"]
}
],
"totalFiles": 0
}
}
Browse path example
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "media.browse",
"params": {
"path": "/roms/SNES",
"maxResults": 3
}
}
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"path": "/roms/SNES",
"entries": [
{
"name": "RPGs",
"path": "/roms/SNES/RPGs",
"type": "directory",
"fileCount": 42,
"hasCover": false
},
{
"mediaId": 42,
"name": "Super Mario World",
"path": "/roms/SNES/Super Mario World.sfc",
"type": "media",
"systemId": "SNES",
"hasCover": true,
"zapScript": "@SNES/Super Mario World",
"relativePath": "Super Mario World.sfc",
"tags": [
{"tag": "1990", "type": "year"},
{"tag": "2", "type": "players"}
]
},
{
"mediaId": 43,
"name": "The Legend of Zelda - A Link to the Past",
"path": "/roms/SNES/The Legend of Zelda - A Link to the Past.sfc",
"type": "media",
"systemId": "SNES",
"hasCover": false,
"zapScript": "@SNES/The Legend of Zelda - A Link to the Past",
"relativePath": "The Legend of Zelda - A Link to the Past.sfc",
"tags": [
{"tag": "1991", "type": "year"},
{"tag": "1", "type": "players"}
]
}
],
"totalFiles": 150,
"pagination": {
"hasNextPage": true,
"pageSize": 3,
"nextCursor": "eyJzb3J0VmFsdWUiOiJUaGUgTGVnZW5kIG9mIFplbGRhIC0gQSBMaW5rIHRvIHRoZSBQYXN0IiwibGFzdElkIjo0Mn0="
}
}
}
media.browse.index
Access: All clients.
Return the ordered first-character "jump to letter" buckets for a browse scope. Each bucket carries a count and a ready-to-use cursor that seeks media.browse to the start of that bucket, so a single round trip gives a client everything it needs to draw a section rail and jump into the full ordered list. This avoids paging from the top to reach a distant section, which matters on constrained clients (e.g. MiSTer).
The scope parameters mirror media.browse so the index describes the exact media-file list media.browse would return for the same scope. The per-bucket cursor is an ordinary browse cursor: pass it to media.browse with the same path/systems/tags/sort to get a normal page that begins at the bucket and continues into the next bucket as the user scrolls.
Parameters
All parameters are optional.
| Key | Type | Required | Description |
|---|---|---|---|
| path | string | No | Directory or virtual scheme to index, same as media.browse. Omit or set empty for a root listing (no rail applies). |
| systems | string[] | No | Case-sensitive system IDs to scope the index to, same as media.browse. |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs in systems. |
| tags | string[] | No | Filter indexed media by tags, using the same syntax and operators as media.browse. |
| sort | string | No | Sort order, must match the media.browse sort the rail is for. One of name-asc (default), name-desc, filename-asc, filename-desc. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| scheme | string | Yes | Collation used to derive the buckets. latin for first-character bucketing; none when no rail applies (a root listing, or a directory whose effective sort is not alphabetical, e.g. a ranked/date-prefixed collection folder), in which case groups is empty. |
| totalFiles | number | Yes | Total media files matching the complete systems/path/tags scope. |
| groups | BrowseIndexGroup[] | Yes | Only non-empty buckets, ordered to match sort. |
Browse index group object
| Key | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Stable bucket identifier (A–Z, 0-9, #). Treat as opaque. |
| label | string | Yes | Display text for the bucket. Equal to key for the latin scheme. |
| count | number | Yes | Number of media files in the bucket. |
| cursor | string | Yes | Opaque media.browse cursor positioned just before the bucket's first row. Empty string for the bucket that begins the list (call media.browse with no cursor for the first page). |
| offset | number | Yes | 0-based position of the bucket's first item among the scope's media files, taken from its row number in the same ordered listing media.browse pages through (so it cannot drift from the browse order). Excludes any directory entries the listing shows before files; a client that jumps to a position in the full list adds its own leading-directory count. Use this to jump to the bucket's position rather than reloading from cursor. |
Clients should render groups exactly as received, in order, without assuming a particular alphabet: scheme and key are opaque so a future locale-aware scheme (e.g. pinyin/kana/hangul buckets) requires no client change.
Example
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "media.browse.index",
"params": {
"path": "/roms/SNES",
"sort": "name-asc"
}
}
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"scheme": "latin",
"totalFiles": 150,
"groups": [
{ "key": "#", "label": "#", "count": 3, "cursor": "", "offset": 0 },
{ "key": "0-9", "label": "0-9", "count": 7, "cursor": "eyJzb3J0VmFsdWUiOiIjV29sZiIsImxhc3RJZCI6MTAyfQ==", "offset": 3 },
{ "key": "A", "label": "A", "count": 12, "cursor": "eyJzb3J0VmFsdWUiOiI5IExpdmVzIiwibGFzdElkIjoxMTV9", "offset": 10 }
]
}
}
To jump to "A", the client calls media.browse with that group's cursor and the same path/sort; the returned page begins at the first "A" title and continues into "B" as the user keeps scrolling.
media.tags
Access: All clients.
Query the media database and return available tags for filtering.
This method returns all available tags (with their types) for the specified systems. Use this to build dynamic filter UIs showing available tag options.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| systems | string[] | No | Case-sensitive list of system IDs to restrict tags to. A missing key or empty list will get all systems. |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs in the systems array (e.g., "snes" matches "SNES"). |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| tags | TagInfo[] | Yes | Array of available tags. |
Tag Capping: To prevent large responses, long-tail tag types are capped at 100 entries
per type. Tags within each type are sorted by usage count (most popular first), then
alphabetically. The following types are capped: credit, developer, mameparent,
publisher, search. Taxonomy types (e.g., region, year, lang, gamegenre, gamefamily)
have finite vocabularies per system and are always returned in full without truncation.
TagInfo object
| Key | Type | Required | Description |
|---|---|---|---|
| tag | string | Yes | The tag value. |
| type | string | Yes | The tag type (e.g., "genre", "year"). |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"method": "media.tags",
"params": {
"systems": ["NES", "SNES"]
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"result": {
"tags": [
{
"type": "genre",
"tag": "action"
},
{
"type": "genre",
"tag": "platformer"
},
{
"type": "gamefamily",
"tag": "Mario Bros"
},
{
"type": "gamefamily",
"tag": "Super Mario"
}
]
}
}
media.tags.update
Access: All clients.
Add or remove user tags for an indexed media item.
The initial mutable tag is user:favorite. It appears in normal media tag results and can be queried with media.search tag filters such as user:favorite, -user:favorite, and ~user:favorite.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Media DBID to update. Cannot be mixed with system/path. |
| system | string | No | System ID for path-based lookup. Required when using path. |
| path | string | No | Media path for path-based lookup. Required with system. |
| add | string[] | No | Tags to add. Currently only user:favorite is mutable. |
| remove | string[] | No | Tags to remove. Currently only user:favorite is mutable. |
Either mediaId or system plus path is required. At least one of add or remove is required. Search operators (+, -, ~) are not valid in mutation requests.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| tags | TagInfo[] | Yes | Effective tags for the media item. |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"method": "media.tags.update",
"params": {
"mediaId": 42,
"add": ["user:favorite"]
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"result": {
"tags": [
{
"type": "user",
"tag": "favorite"
}
]
}
}
media.generate
Access: All clients.
Create a new media database index.
During indexing, the server will emit media.indexing notifications showing progress of the index.
Parameters
Optionally, an object:
| Key | Type | Required | Description |
|---|---|---|---|
| systems | string[] | No | List of system IDs to restrict indexing to. Other system indexes will remain as is. |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs in the systems array (e.g., "snes" matches "SNES"). |
| rebuild | boolean | No | Discard the media database entirely and index from scratch ("fresh start"). Scraped metadata is lost and must be re-scraped; favourites and launcher overrides are preserved (they live in the user database and are re-applied after indexing). Cannot be combined with systems. |
An omitted or null value parameters key is also valid and will index every system.
Selective Indexing Behavior:
- When
systemsis provided with specific system IDs, only those systems will be reindexed - The server will validate all provided system IDs and return an error if any are invalid
- If all systems are specified (equivalent to no restriction), a full database rebuild will be performed for optimal performance
- Selective indexing cannot be performed while database optimization is running
- Resume functionality will validate that the system configuration hasn't changed between indexing sessions
Result
Returns null on success. Indexing runs in the background after the response is sent. Track progress using media.indexing notifications.
Examples
Full index request
{
"jsonrpc": "2.0",
"id": "6f20e07c-7a5e-11ef-84bb-020304050607",
"method": "media.generate"
}
Response
{
"jsonrpc": "2.0",
"id": "6f20e07c-7a5e-11ef-84bb-020304050607",
"result": null
}
Selective index request
{
"jsonrpc": "2.0",
"id": "7f30e17d-7a5e-11ef-85cc-020304050607",
"method": "media.generate",
"params": {
"systems": ["NES", "SNES", "Genesis"]
}
}
Response
{
"jsonrpc": "2.0",
"id": "7f30e17d-7a5e-11ef-85cc-020304050607",
"result": null
}
media.generate.cancel
Access: All clients.
Cancel any currently running media database indexing operation.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | Status message about the cancellation. |
Example
Request
{
"jsonrpc": "2.0",
"id": "8f40e28e-7a5e-11ef-86dd-020304050607",
"method": "media.generate.cancel"
}
Response (indexing was running)
{
"jsonrpc": "2.0",
"id": "8f40e28e-7a5e-11ef-86dd-020304050607",
"result": {
"message": "Media indexing cancelled successfully"
}
}
Response (no indexing running)
{
"jsonrpc": "2.0",
"id": "8f40e28e-7a5e-11ef-86dd-020304050607",
"result": {
"message": "No media indexing operation is currently running"
}
}
media.generate.resume
Access: All clients.
Resume media database indexing paused by Core while media is active.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | Media indexing resumed when a paused index resumes, or Media indexing is not paused when there is nothing to resume. |
Example
Request
{
"jsonrpc": "2.0",
"id": "9a51f39f-7a5e-11ef-87ee-020304050607",
"method": "media.generate.resume"
}
Response
{
"jsonrpc": "2.0",
"id": "9a51f39f-7a5e-11ef-87ee-020304050607",
"result": {
"message": "Media indexing resumed"
}
}
media.active
Access: All clients.
Returns the currently active media.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| slot | string | No | Media slot to query. Use primary or background. Defaults to primary. |
Result
Returns an ActiveMedia object if media is currently active, or null if no media is active.
Example
Request
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"method": "media.active"
}
Response (no active media)
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": null
}
Response (media active)
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": {
"mediaId": 42,
"started": "2024-09-24T17:49:42.938167429+08:00",
"launcherId": "SNES",
"systemId": "SNES",
"systemName": "Super Nintendo Entertainment System",
"mediaPath": "/roms/snes/Super Mario World (USA).sfc",
"relativePath": "snes/Super Mario World (USA).sfc",
"mediaName": "Super Mario World",
"zapScript": "@SNES/Super Mario World",
"launcherControls": ["load_state", "save_state", "toggle_menu"]
}
}
media.active.update
Access: All clients.
Update the currently active media information.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| systemId | string | Yes | ID of the system. |
| mediaPath | string | Yes | Path to the media file. |
| mediaName | string | Yes | Display name of the media. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"method": "media.active.update",
"params": {
"systemId": "SNES",
"mediaPath": "/roms/snes/game.sfc",
"mediaName": "Game"
}
}
Response
{
"jsonrpc": "2.0",
"id": "47f80537-7a5d-11ef-9c7b-020304050607",
"result": null
}
media.history.latest
Access: All clients.
Return the most recent played media entry from the user database only. This is intended for startup paths that need the last played game as quickly as possible, without media database enrichment.
This method does not return tags, metadata, media IDs, relative paths, pagination, end time, or play time.
Parameters
None. Empty params may be omitted or sent as {}.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| entry | MediaHistoryLatestEntry | Yes | Most recent media play history entry, or null when none exists. |
Media history latest entry object
| Key | Type | Required | Description |
|---|---|---|---|
| systemId | string | Yes | ID of the system. |
| systemName | string | Yes | Display name of the system from the history row. |
| mediaName | string | Yes | Display name of the media from the history row. |
| mediaPath | string | Yes | Path to the media file from the history row. |
| launcherId | string | Yes | ID of the launcher used. |
| startedAt | string | Yes | Timestamp when media started in RFC3339 format. |
Example
Request
{
"jsonrpc": "2.0",
"id": "9f2c6a52-7a5d-11ef-9c7b-020304050607",
"method": "media.history.latest"
}
Response
{
"jsonrpc": "2.0",
"id": "9f2c6a52-7a5d-11ef-9c7b-020304050607",
"result": {
"entry": {
"systemId": "SNES",
"systemName": "Super Nintendo Entertainment System",
"mediaName": "Super Mario World",
"mediaPath": "/roms/snes/Super Mario World (USA).sfc",
"launcherId": "SNES",
"startedAt": "2025-01-22T14:30:00Z"
}
}
}
media.history
Access: All clients.
Return paginated media play history. Set distinctMedia to return only the newest session for each (systemId, mediaPath) identity, which is useful for recents grids.
Parameters
Optionally, an object:
| Key | Type | Required | Description |
|---|---|---|---|
| limit | number | No | Maximum number of entries to return. Default is 25, maximum is 100. |
| cursor | string | No | Cursor for pagination. Omit for first page, use nextCursor from previous response for subsequent pages with the same filters and distinctMedia value. |
| systems | string[] | No | Filter to one or more system IDs (e.g., ["SNES", "NES"]). |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs. |
| distinctMedia | boolean | No | Return the newest session for each unique (systemId, mediaPath) pair. Each page contains up to limit unique media entries. Default is false. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| entries | MediaHistoryEntry[] | Yes | A list of media play history entries. |
| pagination | Pagination | No | Pagination information for cursor-based navigation. Only present when entries are returned. |
Media history entry object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID for efficient follow-up media.meta and media.image requests. Omitted when the history path cannot be resolved in the current media database. |
| systemId | string | Yes | ID of the system. |
| systemName | string | Yes | Display name of the system. |
| mediaName | string | Yes | Display name of the media. |
| mediaPath | string | Yes | Path to the media file. |
| relativePath | string | No | Launcher-relative convenience path, when it can be derived. Not a stable media identity. |
| hasCover | boolean | Yes | Whether media-level or title-level image properties are available. |
| launcherId | string | Yes | ID of the launcher used. |
| startedAt | string | Yes | Timestamp when media started in RFC3339 format. |
| endedAt | string | No | Timestamp when media stopped in RFC3339 format. Omitted if media is still active. |
| playTime | number | Yes | Duration of the play session in seconds. |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"method": "media.history",
"params": {
"limit": 10,
"distinctMedia": true
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5d-11ef-9c7b-020304050607",
"result": {
"entries": [
{
"mediaId": 42,
"systemId": "SNES",
"systemName": "Super Nintendo Entertainment System",
"mediaName": "Super Mario World",
"mediaPath": "/roms/snes/Super Mario World (USA).sfc",
"relativePath": "snes/Super Mario World (USA).sfc",
"hasCover": true,
"launcherId": "SNES",
"startedAt": "2025-01-22T14:30:00Z",
"endedAt": "2025-01-22T15:15:30Z",
"playTime": 2730
}
],
"pagination": {
"hasNextPage": false,
"pageSize": 10
}
}
}
media.history.top
Access: All clients.
Return aggregated media play history grouped by game, sorted by total play time descending. Useful for "most played" displays.
Parameters
Optionally, an object:
| Key | Type | Required | Description |
|---|---|---|---|
| limit | number | No | Maximum number of entries to return. Default is 25, maximum is 100. |
| systems | string[] | No | Filter to one or more system IDs (e.g., ["SNES", "NES"]). |
| fuzzySystem | boolean | No | Enable fuzzy matching for system IDs. |
| since | string | No | Only count sessions starting after this RFC3339 timestamp. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| entries | MediaHistoryTopEntry[] | Yes | A ranked list of games by total play time. |
Media history top entry object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID for efficient follow-up media.meta and media.image requests. Omitted when the history path cannot be resolved in the current media database. |
| systemId | string | Yes | ID of the system. |
| systemName | string | Yes | Display name of the system. |
| mediaName | string | Yes | Display name of the media. |
| mediaPath | string | Yes | Path to the media file (from most recent session). |
| relativePath | string | No | Launcher-relative convenience path, when it can be derived. Not a stable media identity. |
| totalPlayTime | number | Yes | Total play time across all sessions in seconds. |
| sessionCount | number | Yes | Number of play sessions. |
| lastPlayedAt | string | Yes | Timestamp of the most recent session in RFC3339 format. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-8b6e-12f0-ad8c-030405060708",
"method": "media.history.top",
"params": {
"limit": 5,
"systems": ["SNES"]
}
}
Response
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-8b6e-12f0-ad8c-030405060708",
"result": {
"entries": [
{
"mediaId": 42,
"systemId": "SNES",
"systemName": "Super Nintendo Entertainment System",
"mediaName": "Super Mario World",
"mediaPath": "/roms/snes/Super Mario World (USA).sfc",
"relativePath": "snes/Super Mario World (USA).sfc",
"totalPlayTime": 7200,
"sessionCount": 12,
"lastPlayedAt": "2026-02-14T20:30:00Z"
}
]
}
}
media.lookup
Access: All clients.
Resolve a game name and system to a media database match.
Given a system ID and game name, searches the media database for the best matching title. Uses fuzzy matching to handle minor differences in naming. Returns null for the match when no title is found or confidence is too low.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| system | string | Yes | System ID to search within (e.g., "SNES", "Genesis"). |
| name | string | Yes | Game name to look up. |
| fuzzySystem | boolean | No | Enable fuzzy matching for the system ID (e.g., "snes" matches "SNES"). |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| match | MediaLookupMatch | No | The best matching media entry, or null if no match found. |
Media lookup match object
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID for efficient follow-up media.meta and media.image requests. |
| system | System | Yes | System the media was found in. |
| name | string | Yes | Display name of the matched media. |
| path | string | Yes | Path to the media file. |
| relativePath | string | No | Launcher-relative convenience path, when it can be derived. Not a stable media identity. |
| zapScript | string | Yes | ZapScript command to launch this media item. |
| tags | TagInfo[] | Yes | Array of tags associated with this media item. |
| confidence | number | Yes | Match confidence score from 0.0 to 1.0. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5d-11ef-9c7b-020304050607",
"method": "media.lookup",
"params": {
"system": "SNES",
"name": "Super Mario World"
}
}
Response (match found)
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5d-11ef-9c7b-020304050607",
"result": {
"match": {
"mediaId": 42,
"system": {
"id": "SNES",
"name": "Super Nintendo Entertainment System",
"category": "Console",
"releaseDate": "1990-11-21",
"manufacturer": "Nintendo"
},
"name": "Super Mario World",
"path": "/roms/snes/Super Mario World (USA).sfc",
"relativePath": "SNES/Super Mario World (USA).sfc",
"zapScript": "@SNES/Super Mario World",
"tags": [
{
"tag": "platformer",
"type": "genre"
},
{
"tag": "1990",
"type": "year"
}
],
"confidence": 0.95
}
}
}
Response (no match)
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5d-11ef-9c7b-020304050607",
"result": {
"match": null
}
}
media.meta
Access: All clients.
Return the full metadata graph for one indexed media row, including its title, system, tags, and scraped properties.
Use this when a client has a search, browse, or lookup result and needs all metadata attached to that row. Identify media by the result's mediaId when available, or by system.id and canonical path. Launcher-relative paths in the system/path shape are accepted as a compatibility fallback when they resolve to exactly one indexed media row. Properties are separated by scope: media.properties applies to the specific ROM/file row, and media.title.properties applies to the shared title.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID from search, browse, or lookup. Cannot be mixed with system/path. |
| system | string | No | System ID for the media row. Required when mediaId is omitted. |
| path | string | No | Canonical indexed media path. Required when mediaId is omitted. |
| items | object[] | No | Batch request items. Each item uses either mediaId or system/path. Maximum 100 items. Cannot be mixed with top-level media ref fields. |
Single requests return the existing single media response shape. Batch requests return { "items": [...] } in input order. Each batch item contains either media or error, so one missing media row does not fail the whole batch.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| media | MediaMeta | Yes | Metadata for the media row. |
Media meta object
| Key | Type | Required | Description |
|---|---|---|---|
| path | string | Yes | Media file path. |
| parentDir | string | Yes | Parent directory stored for the media row. |
| isMissing | boolean | Yes | Whether the indexed file is currently missing. |
| tags | TagInfo[] | Yes | ROM-level tags for this media row. |
| properties | object | Yes | ROM-level properties keyed by canonical type tag. |
| launcherOverride | string | No | Launcher ID stored for this media row, mirrored from property:launcher-override in properties. When present, Core uses it for title, search, path, random, and history launches unless ZapScript includes an explicit launcher argument. |
| title | MediaMetaTitle | Yes | Shared title metadata for this media row. |
Media meta title object
| Key | Type | Required | Description |
|---|---|---|---|
| slug | string | Yes | Primary normalized title slug. |
| secondarySlug | string | No | Secondary title slug, when available. |
| name | string | Yes | Display title. |
| slugLength | number | Yes | Character length of the primary slug. |
| slugWordCount | number | Yes | Word count of the primary slug. |
| system | object | Yes | Stored system object with id and name. |
| tags | TagInfo[] | Yes | Title-level tags shared by matching media rows. |
| properties | object | Yes | Title-level properties keyed by canonical type tag. |
Media meta property object
| Key | Type | Required | Description |
|---|---|---|---|
| text | string | Yes | Text value or source path for the property. |
| contentType | string | Yes | MIME type for binary-backed properties, empty for text-only values. |
| extension | string | No | File extension without a dot, derived from MIME type or source path. |
| blobSize | number | No | Size in bytes for binary-backed properties. |
Binary property data is not returned by media.meta. Use media.image to fetch image bytes.
Property keys are canonical type tags such as property:description, property:image-image, or property:manual.
Example
Request
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-7a5d-11ef-9c7b-020304050607",
"method": "media.meta",
"params": {
"system": "SNES",
"path": "/roms/snes/Super Mario World.sfc"
}
}
Response
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-7a5d-11ef-9c7b-020304050607",
"result": {
"media": {
"path": "/roms/snes/Super Mario World.sfc",
"parentDir": "/roms/snes",
"isMissing": false,
"tags": [
{"type": "region", "tag": "usa"}
],
"properties": {
"property:launcher-override": {
"text": "RetroArch",
"contentType": ""
}
},
"launcherOverride": "RetroArch",
"title": {
"slug": "super mario world",
"name": "Super Mario World",
"slugLength": 17,
"slugWordCount": 3,
"system": {
"id": "SNES",
"name": "Super Nintendo Entertainment System"
},
"tags": [
{"type": "developer", "tag": "Nintendo"},
{"type": "gamegenre", "tag": "platformer"}
],
"properties": {
"property:description": {
"text": "Mario's dinosaur friend Yoshi makes his debut.",
"contentType": ""
}
}
}
}
}
}
Batch Request
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-7a5d-11ef-9c7b-020304050608",
"method": "media.meta",
"params": {
"items": [
{"mediaId": 42},
{"system": "SNES", "path": "/roms/snes/Super Metroid.sfc"}
]
}
}
media.meta.update
Access: All clients.
Update writable metadata fields for one indexed media row, then return the same response shape as media.meta.
Use this to store a per-media launcher override. Core validates the launcher exists and supports the media row's system before saving it. Set launcherOverride to null to clear the override.
Launcher selection order is:
- Explicit
launcheradvanced argument in ZapScript. - Per-media
launcherOverridestored withmedia.meta.update. - System default launcher from configuration.
- Normal launcher matching.
Parameters
An object identifying the media row by mediaId or by system and canonical path.
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID from search, browse, or lookup. Cannot be mixed with system/path. |
| system | string | No | System ID for the media row. Required when mediaId is omitted. |
| path | string | No | Canonical indexed media path. Required when mediaId is omitted. |
| media | object | Yes | Patch object. Currently supports only launcherOverride. |
Media patch object
| Key | Type | Required | Description |
|---|---|---|---|
| launcherOverride | string|null | Yes | Launcher ID to use for this media row, matched case-insensitively and stored with canonical casing. Use null to clear it. Empty strings are rejected. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| media | MediaMeta | Yes | Updated metadata for row. |
Example
Set override
{
"jsonrpc": "2.0",
"id": 1,
"method": "media.meta.update",
"params": {
"mediaId": 42,
"media": {
"launcherOverride": "RetroArch"
}
}
}
Clear override
{
"jsonrpc": "2.0",
"id": 2,
"method": "media.meta.update",
"params": {
"system": "SNES",
"path": "/roms/snes/Super Mario World.sfc",
"media": {
"launcherOverride": null
}
}
}
media.image
Access: All clients.
Return the best matching image for one indexed media row. Inline base64 delivery remains default. Clients can explicitly request a transient path to a Core-owned cached thumbnail.
media.image checks the requested image types in order. For each type it tries media-level properties first, then title-level properties. If a stored file path no longer exists, the stale property is removed and lookup continues.
Parameters
An object identifying the media row by mediaId or (system, path). Canonical indexed paths are preferred. Launcher-relative paths in the system/path shape are accepted as a compatibility fallback when they resolve to exactly one indexed media row.
| Key | Type | Required | Description |
|---|---|---|---|
| mediaId | number | No | Opaque media database row ID from search, browse, or lookup. Cannot be mixed with system/path. |
| system | string | No | System ID. Required when mediaId is omitted. |
| path | string | No | Canonical indexed media path. Required when mediaId is omitted. |
| imageTypes | string[] | No | Image type preference order. Defaults to image, thumbnail, boxart, boxart3d, screenshot, wheel, titleshot, map, marquee, fanart. |
| maxSize | number | No | Longest-edge size hint in pixels. When set, the server resizes the image to fit a maxSize×maxSize box and caches the result; omit it for the full-size image. Required for localPath delivery. |
| delivery | string | No | inline (default) or localPath. localPath requires a positive maxSize and returns a path on the Core host. |
Supported image type values are image, thumbnail, boxart, boxart3d, screenshot, wheel, titleshot, map, marquee, and fanart. They resolve to canonical property tags such as property:image-image and property:image-boxart.
Resizing is intended for grid and preview views where transferring and holding full-size art is expensive. maxSize is snapped up to the nearest of a small set of standard tiers (32, 64, 128, 256, 512, 768) server-side. The returned image is never larger than the snapped tier and never larger than the source — when the source already fits the tier it is returned at its native dimensions, so the result may still be larger than the exact maxSize you asked for. Request your true display size (logical size × pixel ratio) and downscale to the final size on the client. The snapped tiers bound how many resized variants are cached per image. Output is re-encoded as WebP (lossy, alpha preserved) regardless of source format — including when the source already fits the box, so even a near-native request still gets the smaller WebP — and cached on disk so repeat requests are cheap. The original bytes are kept only when WebP would not shrink them (already-compact sources), when maxSize is omitted/non-positive (full size), or when the source cannot be decoded.
localPath never returns an original scraper or media path. Core resolves image semantics, materializes its own bounded thumbnail cache artifact, and returns that path. Path delivery is available to any client that explicitly requests it, regardless of peer locality or Core platform; remote callers are responsible for having an appropriate shared-filesystem view of the Core host path. Treat the path as opaque, transient, and nonportable: read it immediately, never persist it or derive neighboring paths, and retry once with delivery: "inline" if the file is inaccessible or disappears before it is opened. If cache materialization fails, Core can safely return delivery: "inline" in the same response.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| delivery | string | Yes | Actual delivery used: inline or localPath. Clients must inspect this field because a requested local path can fall back inline. |
| contentType | string | Yes | MIME type of the returned image data. |
| extension | string | No | File extension without a dot, derived from MIME type or source path. |
| data | string | No | Base64-encoded image bytes. Present for inline delivery. |
| localPath | string | No | Absolute, opaque Core-host path to a cached thumbnail. Present for localPath delivery. |
| typeTag | string | Yes | Canonical property tag that matched. |
Example
Request
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-7a5d-11ef-9c7b-020304050607",
"method": "media.image",
"params": {
"system": "SNES",
"path": "/roms/snes/Super Mario World.sfc",
"imageTypes": ["boxart", "image"],
"maxSize": 512
}
}
Response
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-7a5d-11ef-9c7b-020304050607",
"result": {
"delivery": "inline",
"contentType": "image/webp",
"extension": "webp",
"data": "UklGRiQAAABXRUJQVlA4...",
"typeTag": "property:image-boxart"
}
}
Local-path request
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-7a5d-11ef-9c7b-020304050607",
"method": "media.image",
"params": {
"mediaId": 123,
"imageTypes": ["boxart"],
"maxSize": 256,
"delivery": "localPath"
}
}
Local-path response
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-7a5d-11ef-9c7b-020304050607",
"result": {
"delivery": "localPath",
"contentType": "image/webp",
"extension": "webp",
"localPath": "/media/fat/zaparoo/cache/thumbs/v2/U05FUw/example.webp",
"typeTag": "property:image-boxart"
}
}
scrapers
Access: All clients.
List all registered metadata scrapers.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| scrapers | ScraperInfo[] | Yes | Registered scraper implementations. |
Scraper info object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Stable scraper ID used by media.scrape. |
| name | string | Yes | Human-readable scraper name. |
| supportedSystems | string[] | Yes | Supported system IDs. Empty means the scraper can run against all systems. |
Example
Request
{
"jsonrpc": "2.0",
"id": "f6a7b8c9-7a5d-11ef-9c7b-020304050607",
"method": "scrapers"
}
Response
{
"jsonrpc": "2.0",
"id": "f6a7b8c9-7a5d-11ef-9c7b-020304050607",
"result": {
"scrapers": [
{
"id": "gamelist.xml",
"name": "gamelist.xml",
"supportedSystems": []
}
]
}
}
media.scrape
Access: All clients.
Start a metadata scraper run in the background.
Scraping enriches existing MediaDB records only. It does not create media rows; run media.generate first so the filesystem scanner has indexed the library. Scraping and media indexing are mutually exclusive, and only one scraper can run at a time.
Progress is reported with media.scraping notifications and can be queried with media.scrape.status. Scraping pauses while media is running and resumes automatically when playback stops.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| scraperId | string | Yes | Scraper ID from the scrapers method, for example gamelist.xml. |
| systems | string[] | No | System IDs to scrape. Omit or pass an empty array to scrape all eligible systems. |
| force | boolean | No | Re-scrape records that already have this scraper's sentinel tag. Default is false. |
Result
Returns null on success. The scraper continues after the response is sent.
Example
Request
{
"jsonrpc": "2.0",
"id": "a7b8c9d0-7a5d-11ef-9c7b-020304050607",
"method": "media.scrape",
"params": {
"scraperId": "gamelist.xml",
"systems": ["SNES", "NES"],
"force": false
}
}
Response
{
"jsonrpc": "2.0",
"id": "a7b8c9d0-7a5d-11ef-9c7b-020304050607",
"result": null
}
media.scrape.status
Access: All clients.
Return the latest known metadata scraper status.
This method behaves like media does for indexing status: clients can query the current scrape snapshot after opening a UI, then continue listening for media.scraping notifications. If no scrape has run since startup, the result is idle with scraping: false, done: false, and state: "idle". Existing flat counter fields remain for compatibility; new UIs should prefer currentSystem for per-system progress and totalSteps/currentStep/currentStepDisplay for whole-run progress.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| scraperId | string | No | Scraper ID for the latest or active run. |
| systemId | string | No | System currently being processed, when known. |
| processed | integer | Yes | Number of records processed. |
| total | integer | Yes | Total records expected for the current scrape, when known. |
| matched | integer | Yes | Number of records matched and enriched. |
| skipped | integer | Yes | Number of records skipped. |
| totalScraped | integer | Yes | Number of media records already marked scraped. |
| scraping | boolean | Yes | Whether a scrape is currently running. |
| done | boolean | Yes | Whether the latest scrape reached a terminal state. |
| paused | boolean | Yes | Whether the active scrape is paused because media is running or until resumed. |
| state | string | No | Explicit lifecycle state: idle, running, paused, completed, cancelled, or failed. |
| error | string | No | Fatal scrape error on failed terminal updates. |
| totalSteps | integer | No | Total systems in the scrape run, when known. |
| currentStep | integer | No | 1-based current system step, when known. |
| currentStepDisplay | string | No | Display name for the current system step, falling back to system ID. |
| currentSystem | object | No | Per-system progress object with systemId, systemName, processed, total, matched, and skipped. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b8c9d0e1-7a5d-11ef-9c7b-020304050607",
"method": "media.scrape.status"
}
Response
{
"jsonrpc": "2.0",
"id": "b8c9d0e1-7a5d-11ef-9c7b-020304050607",
"result": {
"scraperId": "gamelist.xml",
"systemId": "snes",
"processed": 42,
"total": 100,
"matched": 38,
"skipped": 4,
"totalScraped": 1200,
"scraping": true,
"done": false,
"paused": false,
"state": "running",
"totalSteps": 2,
"currentStep": 1,
"currentStepDisplay": "Super Nintendo Entertainment System",
"currentSystem": {
"systemId": "snes",
"systemName": "Super Nintendo Entertainment System",
"processed": 42,
"total": 100,
"matched": 38,
"skipped": 4
}
}
}
media.scrape.cancel
Access: All clients.
Cancel the currently running metadata scraper operation.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | Status message about the cancellation. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b8c9d0e1-7a5d-11ef-9c7b-020304050607",
"method": "media.scrape.cancel"
}
Response
{
"jsonrpc": "2.0",
"id": "b8c9d0e1-7a5d-11ef-9c7b-020304050607",
"result": {
"message": "scraping cancelled"
}
}
media.scrape.resume
Access: All clients.
Resume a paused metadata scraper operation.
Scraping normally resumes automatically when playback stops. This method mirrors media.generate.resume and lets a local client force the active scrape to continue while the pauser is currently paused.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | Status message about resuming. |
Example
Request
{
"jsonrpc": "2.0",
"id": "c9d0e1f2-7a5d-11ef-9c7b-020304050607",
"method": "media.scrape.resume"
}
Response
{
"jsonrpc": "2.0",
"id": "c9d0e1f2-7a5d-11ef-9c7b-020304050607",
"result": {
"message": "Media scraping resumed"
}
}
media.clean.orphans
Access: All clients.
Delete media rows marked missing and remove orphaned related data.
This is intended for cleanup after files have been removed from disk and the media database has been refreshed. It removes missing Media rows, their tags and properties, and any titles that no longer have media rows. It does not run VACUUM; SQLite will reuse freed pages.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| deleted | number | Yes | Number of missing media rows removed. |
Example
Request
{
"jsonrpc": "2.0",
"id": "c9d0e1f2-7a5d-11ef-9c7b-020304050607",
"method": "media.clean.orphans"
}
Response
{
"jsonrpc": "2.0",
"id": "c9d0e1f2-7a5d-11ef-9c7b-020304050607",
"result": {
"deleted": 12
}
}
media.control
Access: All clients.
Send a control action to the active media's launcher.
Requires active media with a launcher that supports control capabilities. The available control actions depend on the launcher. Use the launcherControls field from media.active or media to discover supported actions.
Control actions run in a restricted runtime that blocks media-launching and playlist commands. Utility commands like input.keyboard, execute, delay and echo are allowed. The execute command bypasses the allow_execute allowlist for control scripts defined in launcher configuration.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | The control action to execute (e.g., "save_state", "toggle_pause"). |
| slot | string | No | Target media slot. Omit for primary media; use "background" to control background audio. |
| args | object | No | Optional key-value arguments for the control action. Values are strings. |
Result
Returns an empty object {} on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-7a5d-11ef-9c7b-020304050607",
"method": "media.control",
"params": {
"action": "save_state"
}
}
Response
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-7a5d-11ef-9c7b-020304050607",
"result": {}
}
Background audio example
Native audio supports toggle_pause, pause, resume, stop, fast_forward, and rewind controls on the background slot. fast_forward and rewind accept an optional seconds argument; default is 10 seconds.
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-7a5d-11ef-9c7b-020304050607",
"method": "media.control",
"params": {
"action": "fast_forward",
"slot": "background",
"args": {
"seconds": "30"
}
}
}
media.title.parse
Access: All clients.
Preview title and slug generation for a media path without reading the filesystem or media database. This uses the same path parsing rules as media indexing.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| systemId | string | Yes | System ID used to select game or media title-parsing rules. |
| path | string | Yes | Media path to parse. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Parsed display title. |
| slug | string | Yes | Primary normalized title slug. |
| secondarySlug | string | No | Secondary slug generated for a subtitle when present. |
| slugLength | number | Yes | Primary slug length in Unicode characters. |
| slugWordCount | number | Yes | Number of words represented by primary slug. |
Example
Request
{
"jsonrpc": "2.0",
"id": "c4e5f607-7a5d-11ef-9c7b-020304050607",
"method": "media.title.parse",
"params": {
"systemId": "NES",
"path": "roms/nes/Tetris.nes"
}
}
Response
{
"jsonrpc": "2.0",
"id": "c4e5f607-7a5d-11ef-9c7b-020304050607",
"result": {
"name": "Tetris",
"slug": "tetris",
"slugLength": 6,
"slugWordCount": 1
}
}
systems
Access: All clients.
List systems currently indexed or supported by an available launcher on the running platform. Virtual systems are also included.
Set all to include every system represented by the running platform's launcher definitions, even when its runtime dependency is currently unavailable. This is useful when selecting a specific system for its first media index.
Responses include an exact non-missing mediaCount for each system when the media database count query succeeds. Supported systems with no indexed media have mediaCount: 0. The field is omitted if counts are unavailable, preserving compatibility with older clients and database-error fallback behavior.
Set tags to return only systems containing matching non-missing media. Tagged responses use mediaCount for the exact matching count and omit zero-match systems. Tag syntax and AND/NOT/OR operators match media.search. Tags remain the final filter when combined with all, so launcher-only systems with no matching media are omitted.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| all | boolean | No | Include systems with unavailable launchers. Defaults to false. Indexed systems remain listed. |
| tags | string[] | No | Return systems with matching media. Uses the same tag syntax and operators as media.search. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| systems | System[] | Yes | Indexed, available, and optionally unavailable platform systems. Tagged requests include only positive-count systems. |
See System object.
Example
Request
{
"jsonrpc": "2.0",
"id": "dbd312f3-7a5f-11ef-8f29-020304050607",
"method": "systems",
"params": {
"all": true
}
}
Response
{
"jsonrpc": "2.0",
"id": "dbd312f3-7a5f-11ef-8f29-020304050607",
"result": {
"systems": [
{
"id": "GameboyColor",
"name": "Gameboy Color",
"category": "Handheld",
"releaseDate": "1998-10-21",
"manufacturer": "Nintendo",
"mediaCount": 842
},
{
"id": "EDSAC",
"name": "EDSAC",
"category": "Computer",
"releaseDate": "1949-05-06",
"manufacturer": "University of Cambridge",
"mediaCount": 0
}
]
}
}
Settings
settings
Access: All clients. backupRemoteEnabled, backupRemoteSchedule, backupRemoteBaseUrl, and playtimeSyncEnabled are returned only to localhost and paired admin clients.
List currently set configuration settings.
This method will list values set in the Config File. Some config file options may be omitted which are not appropriate to be read or written remotely.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| runZapScript | boolean | Yes | Whether ZapScript execution is enabled. |
| debugLogging | boolean | Yes | Whether debug logging is enabled. |
| audioScanFeedback | boolean | Yes | Whether audio feedback on scan is enabled. |
| readersAutoDetect | boolean | Yes | Whether automatic reader detection is enabled. |
| readersScanMode | string | Yes | Current scan mode setting. |
| readersScanExitDelay | number | Yes | Delay before exiting scan mode in seconds. |
| readersScanIgnoreSystems | string[] | Yes | List of system IDs to ignore during scanning. |
| errorReporting | boolean | Yes | Whether error reporting is enabled. |
| encryption | boolean | Yes | Whether paired encryption is required for remote WebSocket connections. Localhost remains exempt. |
| readersConnect | ReaderConnection[] | Yes | List of manually configured reader connections. |
| systemDefaults | SystemDefault[] | Yes | Per-system overrides for default launcher and exit ZapScript. |
| profilesRequireForLaunch | boolean | Yes | Whether media launches are blocked while no personal profile is active. |
| profilesSwapData | boolean | Yes | Whether profile switches also swap profile-scoped data (saves, save states) on supported platforms. Defaults to true. |
| updateChannel | string | Yes | Release channel used for update checks: stable or beta. Defaults to stable. |
| updateCheck | boolean | Yes | Whether the service looks for new releases on its own. Defaults to true on every platform, including installs a package manager owns. |
| updateInstall | boolean | Yes | Whether the device downloads and installs updates on its own, rather than only telling the user one exists. Defaults to false, and is always false while updateCheck is off. |
| backupRemoteEnabled | boolean | No | Whether automatic remote backup scheduling is enabled. Only returned to localhost and paired admin clients. |
| playtimeSyncEnabled | boolean | No | Whether the user explicitly enabled play history sync. Defaults to false. Only returned to localhost and paired admin clients. |
| backupRemoteSchedule | string | No | Remote backup schedule: daily, weekly, or manual. Only returned to localhost and paired admin clients. |
| backupRemoteBaseUrl | string | No | Configured remote backup server base URL (read-only). Only returned to localhost and paired admin clients. |
Reader connection object
| Key | Type | Required | Description |
|---|---|---|---|
| driver | string | Yes | Reader driver type (e.g., "pn532uart", "acr122pcsc"). |
| path | string | Yes | Path or address for the reader connection. |
| idSource | string | No | Source for the reader ID. |
| enabled | bool | No | Whether the connection is enabled. Defaults to true if omitted. |
System default object
| Key | Type | Required | Description |
|---|---|---|---|
| system | string | Yes | System ID this default applies to. Accepts canonical IDs and aliases. |
| launcher | string | No | Launcher ID or group name to use for this system. Empty means no override. |
| beforeExit | string | No | ZapScript to run when a media instance for this system is exiting (before the new launch starts). |
Example
Request
{
"jsonrpc": "2.0",
"id": "f208d996-7ae6-11ef-960e-020304050607",
"method": "settings"
}
Response
{
"jsonrpc": "2.0",
"id": "f208d996-7ae6-11ef-960e-020304050607",
"result": {
"runZapScript": true,
"debugLogging": false,
"audioScanFeedback": true,
"readersAutoDetect": true,
"readersScanMode": "tap",
"readersScanExitDelay": 0.0,
"readersScanIgnoreSystems": ["DOS"],
"errorReporting": true,
"encryption": false,
"readersConnect": [],
"systemDefaults": [
{
"system": "Genesis",
"launcher": "retroarch"
}
]
}
}
settings.update
Access: Requires settings.write. Changing encryption is localhost only. Online backup and play-history sync settings require localhost or paired admin, so unpaired remote clients cannot change them.
Update one or more settings in-memory and save changes to disk.
This method will only write values which are supplied. Existing values will not be modified.
Parameters
An object containing any of the following optional keys:
| Key | Type | Required | Description |
|---|---|---|---|
| runZapScript | boolean | No | Whether ZapScript execution is enabled. |
| debugLogging | boolean | No | Whether debug logging is enabled. |
| audioScanFeedback | boolean | No | Whether audio feedback on scan is enabled. |
| readersAutoDetect | boolean | No | Whether automatic reader detection is enabled. |
| readersScanMode | string | No | Current scan mode setting. |
| readersScanExitDelay | number | No | Delay before exiting scan mode in seconds. |
| readersScanIgnoreSystems | string[] | No | List of system IDs to ignore during scanning. |
| errorReporting | boolean | No | Whether error reporting is enabled. |
| encryption | boolean | No | Require paired encryption for remote WebSocket connections. This setting can only be changed from localhost. |
| readersConnect | ReaderConnection[] | No | List of manually configured reader connections. |
| systemDefaults | SystemDefault[] | No | Replace the full list of per-system launcher/exit-script overrides. Each launcher value, if non-empty, must match a known launcher ID or group (case-insensitive). |
| profilesRequireForLaunch | boolean | No | Whether media launches are blocked while no personal profile is active. |
| profilesSwapData | boolean | No | Whether profile switches also swap profile-scoped data. Turning it off converges data back to the shared state immediately. |
| updateChannel | string | No | Release channel used for update checks: stable or beta. |
| updateCheck | boolean | No | Whether the service looks for new releases on its own. |
| updateInstall | boolean | No | Whether the device installs updates on its own. Setting it to true while update checking is off is refused; send updateCheck: true in the same call to turn both on. |
| backupRemoteEnabled | boolean | No | Enable automatic remote backup scheduling. Requires a localhost or paired admin client. |
| playtimeSyncEnabled | boolean | No | Explicitly enable or disable play history sync. The first enabled sync uploads retained local history. Disabling stops future uploads. Requires a localhost or paired admin client. |
| backupRemoteSchedule | string | No | Remote backup schedule: daily, weekly, or manual. Requires a localhost or paired admin client. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "settings.update",
"params": {
"debugLogging": false
}
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
settings.reload
Access: All clients.
Reload settings and mappings from disk.
Parameters
None.
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "settings.reload"
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
settings.auth.claim
Access: All clients.
Redeem a claim token against a remote auth server and store the resulting credentials in auth.toml.
This method performs trust discovery using the .well-known/zaparoo protocol. It first verifies that the claim URL's root domain supports auth (auth: 1 in the well-known response), then redeems the claim token to obtain a bearer credential. If the root domain's well-known response includes a trusted list, each related domain is checked for bidirectional trust confirmation before extending the credential. Production claim URLs must use HTTPS. Plain HTTP is accepted only for loopback, private-network, or link-local development endpoints; public HTTP endpoints are rejected.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| claimUrl | string | Yes | HTTPS claim URL. HTTP is allowed only for loopback, private, or link-local development endpoints. |
| token | string | Yes | The one-time claim token to redeem. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| domains | string[] | Yes | List of domains the credential was stored for (root + any trusted). |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-auth-claim-example",
"method": "settings.auth.claim",
"params": {
"claimUrl": "https://api.example.com/auth/claim",
"token": "claim-token-abc123"
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-auth-claim-example",
"result": {
"domains": [
"https://api.example.com",
"https://cdn.example.com"
]
}
}
settings.auth.status
Access: All clients.
Report whether Core holds a stored bearer credential for an auth server URL. The check is local only: the token is never validated against the server and no token material is returned.
Status probes are only answered for official Zaparoo API hosts over HTTPS and for the configured remote backup base URL. Any other URL returns linked: false without revealing whether a credential exists.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Auth server URL to check link state for. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| linked | boolean | Yes | Whether a stored bearer credential exists for the URL. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-auth-status-example",
"method": "settings.auth.status",
"params": {
"url": "https://api.zaparoo.com"
}
}
Response
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-auth-status-example",
"result": {
"linked": true
}
}
settings.auth.unlink
Access: Localhost or paired admin.
Remove the device's online account credentials — the inverse of settings.auth.link. The claim/link flow tags every credential it stores with the root domain that created it (linked_via in auth.toml), so unlink removes the configured remote backup server's entry plus every entry tagged with it, whatever domains the server's trusted list contained at link time. Credentials for other domains, hand-written basic-auth entries, and API keys are untouched. Remote backup state is marked unlinked so the status UI prompts a re-link and the scheduler stops attempting remote backups.
Requires a localhost client or a paired admin client.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| domains | string[] | Yes | Domains whose stored credentials were removed. |
Example
Request
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-auth-unlink-example",
"method": "settings.auth.unlink"
}
Response
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-auth-unlink-example",
"result": {
"domains": ["https://api.zaparoo.com", "https://zpr.au"]
}
}
settings.auth.link
Access: Localhost or paired admin.
Start a reverse device link flow (device-authorization style): Core requests a link from the auth server, returns a user code and verification URLs to display, then polls in the background until the user approves the link in their account. On approval the resulting claim token is redeemed through the same pipeline as settings.auth.claim and the credential is stored in auth.toml.
Requires a localhost client or a paired admin client. Only one link flow can be pending at a time; starting another while one is pending returns an error. Progress is pushed via the auth.link.status notification (with user code and verification URLs omitted) and can be polled with settings.auth.link.status.
Parameters
An object (optional):
| Key | Type | Required | Description |
|---|---|---|---|
| url | string | No | Auth server base URL. Defaults to the official Zaparoo API. HTTP is allowed only for loopback, private, or link-local development endpoints. |
Result
A link status object:
| Key | Type | Required | Description |
|---|---|---|---|
| status | string | Yes | One of none, pending, approved, failed, or cancelled. |
| userCode | string | No | Short code the user enters at the verification URL. |
| verificationUrl | string | No | URL where the user approves the link. |
| verificationUrlComplete | string | No | Verification URL with the user code included, for QR display. |
| expiresAt | string | No | RFC 3339 time when the link request expires. |
| error | string | No | Human-readable reason when status is failed. |
Example
Request
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-auth-link-example",
"method": "settings.auth.link"
}
Response
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-auth-link-example",
"result": {
"status": "pending",
"userCode": "ABCD-1234",
"verificationUrl": "https://online.zaparoo.com/link",
"verificationUrlComplete": "https://online.zaparoo.com/link?code=ABCD1234",
"expiresAt": "2026-06-24T15:14:05Z"
}
}
settings.auth.link.status
Access: Localhost and paired admin clients receive full status. Unpaired remote clients receive redacted status. Paired members are rejected.
Return the state of the active link flow as a link status object (see settings.auth.link). When no flow has been started, status is none.
Access is tiered: localhost clients and paired admin clients receive the full object including userCode and verification URLs; unpaired remote clients receive only the redacted state; paired member clients are forbidden.
Parameters
None.
Result
A link status object (see settings.auth.link).
Example
Request
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-auth-link-status-example",
"method": "settings.auth.link.status"
}
Response
{
"jsonrpc": "2.0",
"id": "d4e5f6a7-auth-link-status-example",
"result": {
"status": "approved"
}
}
settings.auth.link.cancel
Access: Localhost or paired admin.
Cancel the pending link flow. Requires a localhost client or a paired admin client. Returns the terminal cancelled status object with user code and verification URLs omitted. When no flow is pending, returns an error (no active link request).
Parameters
None.
Result
A link status object (see settings.auth.link) with status set to cancelled.
Example
Request
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-auth-link-cancel-example",
"method": "settings.auth.link.cancel"
}
Response
{
"jsonrpc": "2.0",
"id": "e5f6a7b8-auth-link-cancel-example",
"result": {
"status": "cancelled"
}
}
settings.logs.download
Access: All clients.
Download the current log file as base64-encoded content.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| filename | string | Yes | Name of the log file. |
| size | number | Yes | Size of the log file in bytes. |
| content | string | Yes | Base64-encoded content of the log file. |
Example
Request
{
"jsonrpc": "2.0",
"id": "9f50e39f-7a5e-11ef-87ee-020304050607",
"method": "settings.logs.download"
}
Response
{
"jsonrpc": "2.0",
"id": "9f50e39f-7a5e-11ef-87ee-020304050607",
"result": {
"filename": "zaparoo.log",
"size": 1024,
"content": "MjAyNC0wOS0yNFQxNzowMDowMC4wMDBaIElORk8gU3RhcnRpbmcgWmFwYXJvby4uLg=="
}
}
Device backup response objects
Backup methods use the following shared response objects. Authentication credentials are excluded from every backup. Restoring preserves the destination device's identity, encryption setting, paired clients, and stored credentials.
Local backup object
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Backup ZIP filename. |
| path | string | No | Backup ZIP path on the device. |
| createdAt | string | Yes | Creation time in RFC 3339 format. |
| size | number | Yes | ZIP size in bytes. |
| status | string | Yes | success or partial. partial means one or more files were skipped. |
| integrity | string | Yes | valid after creation or restore validation; unchecked after metadata-only inspection. |
| categories | object | No | Map from category name to backup category status. |
| warnings | BackupWarning[] | No | Files omitted from backup. |
| error | string | No | Safe error summary when available. |
Backup category status object
| Key | Type | Required | Description |
|---|---|---|---|
| files | number | Yes | Number of included files. |
| bytes | number | Yes | Total uncompressed bytes. |
| enabled | boolean | Yes | Whether category is enabled in backup scope. |
Backup warning object
| Key | Type | Required | Description |
|---|---|---|---|
| category | string | Yes | Backup category. |
| path | string | Yes | Affected source path. |
| reason | string | Yes | Why file was skipped. |
Remote backup object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Opaque remote backup ID. |
| backupType | string | Yes | Backup type, such as manual or scheduled. |
| schemaVersion | number | Yes | Remote backup schema version. |
| createdAt | string | Yes | Creation time in RFC 3339 format. |
| sizeBytes | number | Yes | Stored backup size in bytes. |
| manifestHash | string | Yes | Hash identifying snapshot contents. |
| categories | object | Yes | Map from category name to { "files": number, "bytes": number }. |
| coreVersion | string | No | Core version that created backup. |
| platform | string | No | Source platform ID. |
| verifiedAt | string | No | Latest verification time in RFC 3339 format. |
| restoredAt | string | No | Latest restore time in RFC 3339 format. |
| sourceDevice | object | No | Source device: id, name, linked, current, and optional platform. IDs are opaque. |
| incompatible | boolean | No | Whether backup uses a newer schema and cannot be restored by this Core version. |
| manifest | object | No | Remote manifest when endpoint includes it. |
Local backups are ZIP archives using known categories (zaparoo, settings, inputs, saves, and savestates), exact platform matching, SHA-256 payload verification, and fixed entry, path, and manifest limits. Restores stage and verify every payload before device mutation. Remote files larger than a 64 MiB transfer pack are skipped and reported, and server quota is checked before upload.
settings.backup
Access: Localhost or paired admin.
Create a local full-device ZIP backup.
Parameters
None.
Result
A local backup object. Newly created backups report integrity: "valid".
Example
{
"jsonrpc": "2.0",
"id": "backup-create-1",
"method": "settings.backup"
}
{
"jsonrpc": "2.0",
"id": "backup-create-1",
"result": {
"name": "backup-20260710-120000-manual.zip",
"path": "/data/backups/backup-20260710-120000-manual.zip",
"createdAt": "2026-07-10T12:00:00Z",
"size": 1048576,
"status": "success",
"integrity": "valid",
"categories": {
"settings": {"files": 4, "bytes": 8192, "enabled": true}
}
}
}
settings.backup.list
Access: Localhost or paired admin.
List local backup ZIP metadata without reading archive manifests.
Parameters
None.
Result
An array of objects with name, createdAt, size, and optional device-local path.
Example
{
"jsonrpc": "2.0",
"id": "backup-list-1",
"method": "settings.backup.list"
}
{
"jsonrpc": "2.0",
"id": "backup-list-1",
"result": [
{
"name": "backup-20260710-120000-manual.zip",
"path": "/data/backups/backup-20260710-120000-manual.zip",
"createdAt": "2026-07-10T12:00:00Z",
"size": 1048576
}
]
}
settings.backup.inspect
Access: Localhost or paired admin.
Read and validate local backup manifest metadata without hashing every payload.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Local backup filename from settings.backup.list. |
Result
A local backup object. Successful inspection reports integrity: "unchecked"; restore performs full payload verification before mutation.
Example
{
"jsonrpc": "2.0",
"id": "backup-inspect-1",
"method": "settings.backup.inspect",
"params": {"name": "backup-20260710-120000-manual.zip"}
}
{
"jsonrpc": "2.0",
"id": "backup-inspect-1",
"result": {
"name": "backup-20260710-120000-manual.zip",
"createdAt": "2026-07-10T12:00:00Z",
"size": 1048576,
"status": "success",
"integrity": "unchecked"
}
}
settings.backup.delete
Access: Localhost or paired admin.
Delete a local backup ZIP.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Local backup filename from settings.backup.list. |
Result
Returns an empty object {} on success.
Example
{
"jsonrpc": "2.0",
"id": "backup-delete-1",
"method": "settings.backup.delete",
"params": {"name": "backup-20260710-120000-manual.zip"}
}
{
"jsonrpc": "2.0",
"id": "backup-delete-1",
"result": {}
}
settings.backup.restore
Access: Localhost or paired admin.
Transactionally restore a local backup. Restore is rejected while media is active or launching. Core creates a pre-restore safety backup, writes the response, then restarts.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Local backup filename from settings.backup.list. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| restoredFrom | LocalBackup | Yes | Backup restored after full validation. |
| preRestoreBackup | LocalBackup | No | Safety backup created before mutation. |
Example
{
"jsonrpc": "2.0",
"id": "backup-restore-1",
"method": "settings.backup.restore",
"params": {"name": "backup-20260710-120000-manual.zip"}
}
{
"jsonrpc": "2.0",
"id": "backup-restore-1",
"result": {
"restoredFrom": {
"name": "backup-20260710-120000-manual.zip",
"createdAt": "2026-07-10T12:00:00Z",
"size": 1048576,
"status": "success",
"integrity": "valid"
}
}
}
settings.backup.status
Access: All clients. Localhost and paired admin requests may trigger a background refresh of stale remote availability; response never waits for that network request.
Return current local and remote backup state.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| activeOperation | string | No | Active operation, such as local-create, remote-upload, or remote-restore. |
| activeSince | string | No | Operation start time in RFC 3339 format. |
| local | object | Yes | Local backup status entry. |
| remote | object | Yes | Remote backup status entry. |
Backup status entry object
| Key | Type | Required | Description |
|---|---|---|---|
| enabled | boolean | Yes | Whether backup mode is enabled. |
| lastStatus | string | Yes | never, running, success, partial, or failed. |
| lastBackupSize | number | Yes | Latest backup size in bytes. |
| lastRunAt | string | No | Latest attempt time. |
| lastSuccessAt | string | No | Latest successful run time, including unchanged remote runs. |
| lastSnapshotCreatedAt | string | No | Time remote stored content last changed. |
| lastRunNoChanges | boolean | No | Latest remote run succeeded without creating new snapshot. |
| lastError | string | No | Safe latest failure summary. |
| categories | object | No | Category status map. |
| warnings | BackupWarning[] | No | Files skipped by latest run. |
| skippedFiles | number | No | Number of skipped files. |
| schedule | string | No | Remote schedule: daily, weekly, or manual. |
| linked | boolean | No | Whether device has usable remote credentials. |
| deviceName | string | No | Linked remote device name. |
| linkedAt | string | No | Device link time. |
| availability | string | No | Cached remote service availability. |
| availabilityCheckedAt | string | No | Latest availability check time. |
Example
{
"jsonrpc": "2.0",
"id": "backup-status-1",
"method": "settings.backup.status"
}
{
"jsonrpc": "2.0",
"id": "backup-status-1",
"result": {
"local": {"enabled": true, "lastStatus": "success", "lastBackupSize": 1048576},
"remote": {"enabled": true, "linked": true, "schedule": "daily", "lastStatus": "success", "lastBackupSize": 1048576}
}
}
settings.backup.remote.run
Access: Localhost or paired admin.
Create a manual remote backup. Manual backups remain available when automatic scheduling is disabled. Upload and scheduling require remote service availability.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| backup | RemoteBackup | Yes | Stored remote snapshot metadata. |
| categories | object | Yes | Uploaded category summaries. |
| uploadedFiles | number | Yes | Files uploaded in this run. |
| dedupedFiles | number | Yes | Files already stored remotely. |
| uploadedPacks | number | Yes | Transfer packs uploaded. |
| uploadedBytes | number | Yes | Bytes uploaded. |
| skippedFiles | number | No | Unsafe, unavailable, or oversized files skipped. |
| warnings | BackupWarning[] | No | Structured skipped-file details. |
| storageUsedBytes | number | No | Remote account storage used. |
| storageQuotaBytes | number | No | Remote account storage quota. |
| noChanges | boolean | No | Server already held identical snapshot; run succeeded without new stored content. |
Example
{
"jsonrpc": "2.0",
"id": "backup-remote-run-1",
"method": "settings.backup.remote.run"
}
{
"jsonrpc": "2.0",
"id": "backup-remote-run-1",
"result": {
"backup": {
"id": "01J2BACKUP",
"backupType": "manual",
"schemaVersion": 1,
"createdAt": "2026-07-10T12:00:00Z",
"sizeBytes": 1048576,
"manifestHash": "sha256:example",
"categories": {}
},
"categories": {},
"uploadedFiles": 4,
"dedupedFiles": 20,
"uploadedPacks": 1,
"uploadedBytes": 8192
}
}
settings.backup.remote.list
Access: Localhost or paired admin.
List remote backups and account quota. Listing existing backups remains available when uploads are unavailable.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| items | RemoteBackup[] | Yes | Remote backups. IDs are opaque. |
| storageUsedBytes | number | Yes | Remote account storage used. |
| storageQuotaBytes | number | Yes | Remote account storage quota. |
Example
{
"jsonrpc": "2.0",
"id": "backup-remote-list-1",
"method": "settings.backup.remote.list"
}
{
"jsonrpc": "2.0",
"id": "backup-remote-list-1",
"result": {
"items": [],
"storageUsedBytes": 0,
"storageQuotaBytes": 1073741824
}
}
settings.backup.remote.restore
Access: Localhost or paired admin.
Transactionally restore an opaque remote backup ID. Listing and restoring existing backups remain available when uploads are unavailable. Restore is rejected while media is active or launching. Core writes response, then restarts.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Opaque backup ID from settings.backup.remote.list. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| restoredFrom | RemoteBackup | Yes | Remote backup restored after full validation. |
| preRestoreBackup | LocalBackup | No | Local safety backup created before mutation. |
Example
{
"jsonrpc": "2.0",
"id": "backup-remote-restore-1",
"method": "settings.backup.remote.restore",
"params": {"id": "01J2BACKUP"}
}
{
"jsonrpc": "2.0",
"id": "backup-remote-restore-1",
"result": {
"restoredFrom": {
"id": "01J2BACKUP",
"backupType": "manual",
"schemaVersion": 1,
"createdAt": "2026-07-10T12:00:00Z",
"sizeBytes": 1048576,
"manifestHash": "sha256:example",
"categories": {}
}
}
}
A remote API 401 marks device unlinked until a fresh link succeeds. Archives that fail ZIP header, manifest, hash, schema, or platform-policy validation return an RPC error without backup metadata.
Playtime
playtime
Access: All clients.
Query current playtime session status and usage statistics.
This method returns comprehensive information about the current playtime session, including active game time, cumulative session time, cooldown state, daily usage, and remaining time before limits are reached.
Session States:
reset- No active session, ready to start new sessionactive- Game currently running, time being trackedcooldown- Game stopped but session persists (within session reset timeout)
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| state | string | Yes | Current session state: "reset", "active", or "cooldown". |
| sessionActive | boolean | Yes | Whether a game is currently running. |
| limitsEnabled | boolean | Yes | Whether playtime limits are currently enabled for enforcement. |
| sessionStarted | string | No | ISO 8601 timestamp when current game started. Only present during "active" state. |
| sessionDuration | string | No | Total time in current session (Go duration format). Present during "active" and "cooldown" states. |
| sessionCumulativeTime | string | No | Cumulative time from previous games in session. Present during "active" and "cooldown" states. |
| sessionRemaining | string | No | Time remaining before session limit reached. Only present if session limit is configured. |
| cooldownRemaining | string | No | Time until session auto-resets. Only present during "cooldown" state. |
| dailyUsageToday | string | No | Total playtime accumulated today. Available in all states when data is available. |
| dailyRemaining | string | No | Time remaining before daily limit reached. Available in all states if daily limit is configured. |
Note: All duration fields use Go's duration format (e.g., "1h30m45s", "45m", "2h").
Examples
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5e-11ef-9c7b-020304050607",
"method": "playtime"
}
Response (reset state)
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5e-11ef-9c7b-020304050607",
"result": {
"state": "reset",
"sessionActive": false,
"limitsEnabled": true,
"dailyUsageToday": "1h30m0s",
"dailyRemaining": "2h30m0s"
}
}
Response (active game with limits)
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5e-11ef-9c7b-020304050607",
"result": {
"state": "active",
"sessionActive": true,
"limitsEnabled": true,
"sessionStarted": "2025-01-22T14:30:00Z",
"sessionDuration": "45m30s",
"sessionCumulativeTime": "15m",
"sessionRemaining": "14m30s",
"dailyUsageToday": "2h15m30s",
"dailyRemaining": "1h44m30s"
}
}
Response (cooldown state)
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-7a5e-11ef-9c7b-020304050607",
"result": {
"state": "cooldown",
"sessionActive": false,
"limitsEnabled": true,
"sessionDuration": "45m30s",
"sessionCumulativeTime": "45m30s",
"sessionRemaining": "14m30s",
"cooldownRemaining": "12m30s",
"dailyUsageToday": "2h15m30s",
"dailyRemaining": "1h44m30s"
}
}
settings.playtime.limits
Access: All clients.
Get current playtime limit configuration.
Returns all configured playtime limits including daily limits, session limits, session reset timeout, warning intervals, and retention settings.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| enabled | boolean | Yes | Whether playtime limits are enabled for enforcement. |
| daily | string | No | Daily playtime limit in Go duration format (e.g., "4h"). Omitted if not configured. |
| session | string | No | Per-session playtime limit in Go duration format (e.g., "1h"). Omitted if not configured. |
| sessionReset | string | No | Idle timeout before session auto-resets in Go duration format (e.g., "20m"). "0s" means session never resets. |
| warnings | string[] | Yes | List of time intervals when warnings are sent before limits reached (e.g., ["5m", "2m", "1m"]). Empty array if none. |
| retention | number | No | Number of days to retain playtime history. Omitted if not configured. |
Example
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5e-11ef-9c7b-020304050607",
"method": "settings.playtime.limits"
}
Response
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-7a5e-11ef-9c7b-020304050607",
"result": {
"enabled": true,
"daily": "4h",
"session": "1h",
"sessionReset": "20m",
"warnings": ["5m", "2m", "1m"],
"retention": 30
}
}
settings.playtime.limits.update
Access: Requires settings.write.
Update playtime limit settings.
This method updates one or more playtime limit configuration values in-memory and saves changes to disk. Only provided fields will be updated; omitted fields remain unchanged.
Parameters
An object containing any of the following optional keys:
| Key | Type | Required | Description |
|---|---|---|---|
| enabled | boolean | No | Enable or disable playtime limit enforcement. |
| daily | string | No | Daily playtime limit in Go duration format (e.g., "4h", "2h30m"). Use "0" or "0s" to disable daily limit. |
| session | string | No | Per-session playtime limit in Go duration format (e.g., "1h", "45m"). Use "0" or "0s" to disable session limit. |
| sessionReset | string | No | Idle timeout before session auto-resets in Go duration format (e.g., "20m"). Use "0" or "0s" for sessions that never reset. |
| warnings | string[] | No | List of time intervals for warnings in Go duration format (e.g., ["10m", "5m", "1m"]). Empty array disables warnings. |
| retention | number | No | Number of days to retain playtime history. Use 0 for no retention limit. |
Important: Duration strings must use Go duration format: combinations of hours (h), minutes (m), and seconds (s). Examples: "1h", "30m", "1h30m", "2h15m30s".
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-7a5e-11ef-9c7b-020304050607",
"method": "settings.playtime.limits.update",
"params": {
"enabled": true,
"session": "1h",
"warnings": ["10m", "5m", "2m"]
}
}
Response
{
"jsonrpc": "2.0",
"id": "c3d4e5f6-7a5e-11ef-9c7b-020304050607",
"result": null
}
Profiles
Profiles are lightweight runtime identities: named buckets of preferences, limits, and profile-owned data. One profile is active per device at a time, switched via the API or by scanning an NFC card containing the profile's switch ID (**profile:<switchId>). Profile roles (admin or member) are separate from paired-client roles: profile roles identify who may authorize local household management, while client roles describe which remote device may call privileged APIs.
When no personal profile is active the device is on the implicit shared profile — the device as it behaves when nobody is signed in. The shared profile's playtime limits are the global config limits, its history is unattributed, and it owns everything the device did before profiles existed. Deactivating means switching to the shared profile. To stop the shared profile launching media (parking the device until someone identifies themselves), enable the profilesRequireForLaunch setting (see settings).
A profile's switch ID is a bearer credential: presenting it — by scanning the card it is written on, or by sending it over the API — authorizes switching to that profile with no PIN, on every path. Switch IDs are therefore only returned to clients with profiles.manage for card-writing. This includes localhost, paired admins, and legacy unpaired remote clients when encryption is disabled; paired members never see them. The optional 4-8 digit PIN protects the remaining path: switching by profileId picked from the visible profile list. Leaving a profile is always free — PINs gate entry only.
Data swapping. On supported platforms (currently MiSTer), profile-owned platform data follows the active profile. This includes saved progress and supported account-specific settings; exact items depend on the platform and installed integrations. The shared profile continues to use the platform's existing data, and creating profiles does not move that data. Device-owned settings remain shared across profiles.
A swap requested while media is running is deferred until it stops, so the running session keeps the data it launched with. Progress and failures are reported by the profiles.data notification; the profilesSwapData setting turns swapping off. Deleting a profile does not delete its profile-owned platform data.
Administration and trust model. The first profile is created as admin and must have a PIN; later profiles default member. The first paired client is admin; later pairings default member. Sensitive local UIs call profiles.verify, confirm the returned profile has the admin role, then send the ordinary management request. This is a client-side nuisance gate for parental and kiosk controls, not cryptographic request authorization; no unlock session is retained. Admin paired clients use their client capability directly. The last admin profile/client cannot be removed or demoted. Profiles remain a household convenience boundary, comparable to TV parental controls — not OS account security. Anyone with OS access still owns the device, and while service.encryption is off an unpaired remote client retains legacy admin API capability, apart from the capabilities that require an authenticated connection — currently update.apply. Enabling encryption makes paired-client restrictions enforceable.
Profile object
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | Yes | Unique identifier of the profile. |
| name | string | Yes | Display name, e.g. "Dad" or "Kid A". |
| role | string | Yes | admin or member. Admin profiles may authorize local management and must have a PIN. |
| switchId | string | No | Word phrase written to profile switch cards, e.g. corn-arm-truck. A bearer credential: presenting it switches to profile with no PIN. Returned only to clients with profiles.manage. |
| hasPin | boolean | Yes | True when the profile has a PIN set. The PIN itself is never returned. |
| limitsEnabled | boolean | No | Playtime limits enabled override. Omitted = inherit the global setting. |
| dailyLimit | string | No | Daily playtime limit override as a duration string (e.g. 2h30m). Omitted = inherit; 0 = unlimited. |
| sessionLimit | string | No | Session playtime limit override as a duration string. Omitted = inherit; 0 = unlimited. |
| lastUsedAt | number | No | Unix timestamp of most recent successful profile activation. Omitted if never activated. |
| createdAt | number | Yes | Unix timestamp of profile creation. |
| lastUpdatedAt | number | Yes | Unix timestamp of last modification. |
profiles
Access: All clients. switchId is returned only to clients with profiles.manage.
List all profiles.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| profiles | Profile[] | Yes | List of profiles. |
profiles.new
Access: Requires profiles.manage.
Create a new profile. Local UIs may use profiles.verify as a nuisance gate. The switch ID is generated automatically; write it to a card as **profile:<switchId>.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Display name. |
| role | string | No | admin or member; later profiles default member. First profile is always admin. |
| pin | string | No | Optional 4-8 digit PIN required to switch by profileId; mandatory for admin profiles. |
| limitsEnabled | boolean | No | Playtime limits enabled override. |
| dailyLimit | string | No | Daily limit duration override. |
| sessionLimit | string | No | Session limit duration override. |
Result
The created profile object.
profiles.update
Access: Requires profiles.manage.
Update a profile. Local UIs may gate this action with profiles.verify. Migrated profiles without an administrator may still be recovered locally. Omitted fields are unchanged. If the updated profile is currently active, its limit changes apply immediately (without resetting the running session).
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | Yes | Profile to update. |
| name | string | No | New display name. |
| role | string | No | Change between admin and member; final admin cannot be demoted. |
| pin | string | No | Set or replace the PIN; admin profiles must retain one. |
| clearPin | boolean | No | Remove the PIN. |
| limitsEnabled | boolean | No | Playtime limits enabled override. |
| dailyLimit | string | No | Daily limit duration override. |
| sessionLimit | string | No | Session limit duration override. |
| clearLimits | boolean | No | Reset all limit overrides back to inheriting the global config, before any limit fields in the same request are applied. |
| regenerateSwitchId | boolean | No | Issue a new switch ID (lost-card replacement). Old cards stop working. |
Result
The updated profile object.
profiles.delete
Access: Requires profiles.manage.
Delete a profile. Local UIs may gate this action with profiles.verify. The final admin profile cannot be deleted. If it is active, the device switches to the shared profile. Past play history keeps its attribution.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | Yes | Profile to delete. |
Result
Null.
profiles.active
Access: All clients.
Get the device's currently active profile.
Parameters
None.
Result
The active profile (a subset of the profile object without switchId and timestamps), or null when no profile is active.
profiles.switch
Access: All clients. Profile PIN or switch ID may still be required.
Switch the device's active profile. Switching by profileId requires the profile's PIN when one is set. Switching by switchId never requires a PIN: the switch ID is a bearer credential, and presenting it is equivalent to scanning the profile's card. Calling with neither profileId nor switchId switches to the shared profile (deactivates), which never requires a PIN. Providing both is an error.
If a game is running when the profile changes, its playtime keeps counting against the profile that launched it: switching to another profile starts a fresh limit session for the new person, while deactivating leaves the launch profile's limits in force until the media stops.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | No | Profile to activate, by ID. Requires pin when the profile has one. |
| switchId | string | No | Profile to activate, by switch ID (bearer credential; no PIN needed). |
| pin | string | No | The profile's PIN, for profileId switching. |
Result
The new active profile, or null when deactivated (shared profile).
profiles.verify
Access: All clients. Requires valid profile PIN or switch ID.
Verify a profile credential without switching: either a profile ID plus its PIN, or a switch ID (a bearer credential — resolving it is the verification, same as scanning the card). Success returns the profile's identity and changes nothing on the device: no session, no active-profile change, no server-side grant of any kind. Clients use this to gate their own ad-hoc UI items behind a credential — e.g. a kiosk frontend requiring a parent's PIN before opening its settings screen. The security of whatever the client unlocks is entirely the client's responsibility.
PIN attempts share the same per-profile rate limiter as profiles.switch, so this method cannot be used to brute-force a PIN any faster than switching attempts could.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | No | Profile to verify against. Requires pin when the profile has one. |
| switchId | string | No | Verify by switch ID (bearer credential; no PIN needed). |
| pin | string | No | The profile's PIN, for profileId verification. |
Exactly one of profileId or switchId is required.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| profileId | string | Yes | ID of the verified profile. |
| name | string | Yes | Display name of the verified profile. |
| role | string | Yes | Profile role (admin or member). |
| hasPin | boolean | Yes | Whether the profile has a PIN set. |
Verification failure (wrong PIN, unknown profile or switch ID, rate limited) returns an error, using the same errors as profiles.switch.
Mappings
Mappings are used to modify the contents of tokens before they're launched, based on different types of matching parameters. Stored mappings are queried before every launch and applied to the token if there's a match. This allows, for example, adding ZapScript to a read-only NFC tag based on its UID.
mappings
Access: All clients.
List all mappings.
Returns a list of all active and inactive mappings entries stored on server.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| mappings | Mapping[] | Yes | List of all stored mappings. See mapping object. |
Mapping object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Internal database ID of mapping entry. Used to reference mapping for updates and deletions. |
| added | string | Yes | Timestamp of the time mapping was created in RFC3339 format. |
| label | string | Yes | An optional display name shown to the user. |
| enabled | boolean | Yes | True if the mapping will be used when looking up matching mappings. |
| type | string | Yes | The field which will be matched against: _ uid: match on UID, if available. UIDs are normalized before matching to remove spaces, colons and convert to lowercase._ text: match on the stored text on token.* data: match on the raw token data, if available. This is converted from bytes to a hexadecimal string and should be matched as this. |
| match | string | Yes | The method used to match a mapping pattern: _ exact: match the entire string exactly to the field._ partial: match part of the string to the field.* regex: use a regular expression to match the field. |
| pattern | string | Yes | Pattern that will be matched against the token, using the above settings. |
| override | string | Yes | Final text that will completely replace the existing token text if a match was successful. |
Example
Request
{
"jsonrpc": "2.0",
"id": "1a8bee28-7aef-11ef-8427-020304050607",
"method": "mappings"
}
Response
{
"jsonrpc": "2.0",
"id": "1a8bee28-7aef-11ef-8427-020304050607",
"result": {
"mappings": [
{
"id": "1",
"added": "1970-01-21T06:08:18+08:00",
"label": "barcode pokemon",
"enabled": true,
"type": "text",
"match": "partial",
"pattern": "9780307468031",
"override": "**launch.search:gbc/*pokemon*gold*"
}
]
}
}
mappings.new
Access: All clients.
Create a new mapping.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| label | string | Yes | An optional display name shown to the user. |
| enabled | boolean | Yes | True if the mapping will be used when looking up matching mappings. |
| type | string | Yes | The field which will be matched against: _ uid: match on UID, if available. UIDs are normalized before matching to remove spaces, colons and convert to lowercase._ text: match on the stored text on token.* data: match on the raw token data, if available. This is converted from bytes to a hexadecimal string and should be matched as this. |
| match | string | Yes | The method used to match a mapping pattern: _ exact: match the entire string exactly to the field._ partial: match part of the string to the field.* regex: use a regular expression to match the field. |
| pattern | string | Yes | Pattern that will be matched against the token, using the above settings. |
| override | string | Yes | Final text that will completely replace the existing token text if a match was successful. |
Result
Returns an empty object {} on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "mappings.new",
"params": {
"label": "Test Mapping",
"enabled": true,
"type": "text",
"match": "exact",
"pattern": "test",
"override": "**launch.system:snes"
}
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": {}
}
mappings.delete
Access: All clients.
Delete an existing mapping.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | Database ID of mapping. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "mappings.delete",
"params": {
"id": 1
}
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
mappings.update
Access: All clients.
Change an existing mapping.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | Internal database ID of mapping entry. |
| label | string | No | An optional display name shown to the user. |
| enabled | boolean | No | True if the mapping will be used when looking up matching mappings. |
| type | string | No | The field which will be matched against: _ uid: match on UID, if available. UIDs are normalized before matching to remove spaces, colons and convert to lowercase._ text: match on the stored text on token.* data: match on the raw token data, if available. This is converted from bytes to a hexadecimal string and should be matched as this. |
| match | string | No | The method used to match a mapping pattern: _ exact: match the entire string exactly to the field._ partial: match part of the string to the field.* regex: use a regular expression to match the field. |
| pattern | string | No | Pattern that will be matched against the token, using the above settings. |
| override | string | No | Final text that will completely replace the existing token text if a match was successful. |
Only keys which are provided in the object will be updated in the database.
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "e98fd686-7e62-11ef-8f8c-020304050607",
"method": "mappings.update",
"params": {
"id": 1,
"enabled": false
}
}
Response
{
"jsonrpc": "2.0",
"id": "e98fd686-7e62-11ef-8f8c-020304050607",
"result": null
}
mappings.reload
Access: All clients.
Reload mappings from the configuration file.
Parameters
None.
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "mappings.reload"
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
Readers
readers
Access: All clients.
List all currently connected readers and their capabilities.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| readers | ReaderInfo[] | Yes | A list of all connected readers. |
Reader info object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Device path or system identifier of the reader. Legacy field, prefer readerId for stable identification. |
| readerId | string | Yes | Stable reader ID, deterministic across restarts. Format: {driver}-{hash}. |
| driver | string | Yes | Driver type for the reader (e.g., "pn532", "acr122pcsc", "file"). |
| info | string | Yes | Human-readable information about the reader. |
| connected | boolean | Yes | Whether the reader is currently connected. |
| capabilities | string[] | Yes | List of capabilities supported by the reader. |
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "readers"
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": {
"readers": [
{
"id": "/dev/ttyUSB0",
"readerId": "pn532-ujqixjv6",
"driver": "pn532",
"info": "PN532 (1-2.3.1)",
"capabilities": ["read", "write"],
"connected": true
}
]
}
}
readers.write
Access: All clients.
Attempt to write given text to the first available write-capable reader, if possible.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| text | string | Yes | ZapScript to be written to the token. |
| readerId | string | No | ID of a specific reader to write to. If omitted, uses the first available write-capable reader. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "readers.write",
"params": {
"text": "**launch.system:snes"
}
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
readers.write.cancel
Access: All clients.
Cancel any ongoing write operation.
Parameters
Optionally, an object:
| Key | Type | Required | Description |
|---|---|---|---|
| readerId | string | No | ID of a specific reader to cancel write on. If omitted, cancels on all readers. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"method": "readers.write.cancel"
}
Response
{
"jsonrpc": "2.0",
"id": "562c0b60-7ae8-11ef-87d7-020304050607",
"result": null
}
Launchers
launchers
Access: All clients.
List all launchers known to the running service. Suitable for populating a UI launcher picker (for example, when assigning a per-system default via settings.update).
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| launchers | Launcher[] | Yes | All cached launchers, sorted by systemId then id. |
Launcher object
| Key | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique launcher identifier. |
| systemId | string | No | The system this launcher targets. Omitted for generic launchers without a fixed system. |
| systemName | string | No | Human-readable system name resolved from system metadata. Omitted when no metadata is available. |
| groups | string[] | No | Group names this launcher belongs to. Group names are valid values for systemDefaults.launcher. |
Example
Request
{
"jsonrpc": "2.0",
"id": "5b8c3a40-7a5e-11ef-88ff-020304050607",
"method": "launchers"
}
Response
{
"jsonrpc": "2.0",
"id": "5b8c3a40-7a5e-11ef-88ff-020304050607",
"result": {
"launchers": [
{
"id": "retroarch",
"systemId": "Genesis",
"systemName": "Genesis",
"groups": ["libretro"]
},
{
"id": "snes9x",
"systemId": "SNES",
"systemName": "Super Nintendo",
"groups": ["libretro"]
}
]
}
}
launchers.refresh
Access: All clients.
Refresh internal launcher cache, forcing reload of launcher configurations and supported platform launcher dependencies. On MiSTer, this forces an RBF filesystem rescan and rewrites the persisted RBF cache.
Parameters
None.
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "af60e4a0-7a5e-11ef-88ff-020304050607",
"method": "launchers.refresh"
}
Response
{
"jsonrpc": "2.0",
"id": "af60e4a0-7a5e-11ef-88ff-020304050607",
"result": null
}
Service
version
Access: All clients.
Return server's current version and platform.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| platform | string | Yes | ID of platform the service is currently running on. |
| version | string | Yes | Current version of the running Zaparoo service. |
Example
Request
{
"jsonrpc": "2.0",
"id": "ca47f646-7e47-11ef-971a-020304050607",
"method": "version"
}
Response
{
"jsonrpc": "2.0",
"id": "ca47f646-7e47-11ef-971a-020304050607",
"result": {
"platform": "mister",
"version": "2.0.0-dev"
}
}
health
Access: All clients.
Simple health check to verify the server is running and responding.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| status | string | Yes | Health status. Returns "ok" when server is healthy. |
Example
Request
{
"jsonrpc": "2.0",
"id": "db58f757-7e47-11ef-982b-020304050607",
"method": "health"
}
Response
{
"jsonrpc": "2.0",
"id": "db58f757-7e47-11ef-982b-020304050607",
"result": {
"status": "ok"
}
}
Inbox
Inbox messages are system notifications stored on the server, typically used to inform the user of events like update availability, errors, or other important information.
inbox
Access: All clients.
List all inbox messages.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| messages | InboxMessage[] | Yes | List of inbox messages. |
Inbox message object
| Key | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | Unique identifier of the message. |
| title | string | Yes | Title of the message. |
| body | string | No | Body text of the message. |
| severity | number | Yes | Severity level (0=info, 1=warning, 2=error). |
| category | string | No | Category of the message. |
| profileId | number | No | Associated profile ID, if applicable. |
| createdAt | string | Yes | Timestamp when message was created in RFC3339 format. |
Example
Request
{
"jsonrpc": "2.0",
"id": "ec69f868-7e47-11ef-993c-020304050607",
"method": "inbox"
}
Response
{
"jsonrpc": "2.0",
"id": "ec69f868-7e47-11ef-993c-020304050607",
"result": {
"messages": [
{
"id": 1,
"title": "Update Available",
"body": "A new version of Zaparoo is available.",
"severity": 0,
"category": "update",
"createdAt": "2024-09-24T17:49:42.938167429+08:00"
}
]
}
}
inbox.delete
Access: All clients.
Delete a specific inbox message by ID.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | ID of the message to delete. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "fd7a0979-7e47-11ef-9a4d-020304050607",
"method": "inbox.delete",
"params": {
"id": 1
}
}
Response
{
"jsonrpc": "2.0",
"id": "fd7a0979-7e47-11ef-9a4d-020304050607",
"result": null
}
inbox.clear
Access: All clients.
Delete all inbox messages.
Parameters
None.
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "0e8b1a8a-7e48-11ef-9b5e-020304050607",
"method": "inbox.clear"
}
Response
{
"jsonrpc": "2.0",
"id": "0e8b1a8a-7e48-11ef-9b5e-020304050607",
"result": null
}
Clients
clients
Access: Localhost only.
List paired API clients. Pairing secrets and authentication tokens are never returned.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| clients | PairedClient[] | Yes | Paired client metadata. |
Paired client object
| Key | Type | Required | Description |
|---|---|---|---|
| clientId | string | Yes | Opaque client ID. |
| clientName | string | Yes | Name supplied by client during pairing. |
| role | string | Yes | Paired role: admin or member. |
| createdAt | number | Yes | Pairing time as Unix seconds. |
| lastSeenAt | number | Yes | Latest recorded activity as Unix seconds. |
Example
{
"jsonrpc": "2.0",
"id": "clients-list-1",
"method": "clients"
}
{
"jsonrpc": "2.0",
"id": "clients-list-1",
"result": {
"clients": [
{
"clientId": "client-01J2",
"clientName": "Zaparoo App",
"role": "admin",
"createdAt": 1783684800,
"lastSeenAt": 1783688400
}
]
}
}
clients.current
Access: All clients.
Return pairing status, authenticated role, and effective capabilities for the current connection. This method is available to every connection accepted by the API transport.
role is admin or member for paired connections and null otherwise. Unpaired plaintext connections retain their legacy effective capabilities, except those that require an authenticated connection — currently update.apply, which such a connection never receives. Clients should use capability presence for corresponding UI gates and treat role as display-only. Capability names currently include profiles.manage, settings.write, and update.apply; the array does not enumerate every callable RPC method.
Parameters
None.
Result
| Key | Type | Description |
|---|---|---|
| paired | boolean | Whether connection carries an authenticated paired identity. |
| role | string or null | Paired client role, or null for an unpaired connection. |
| capabilities | array of strings | Effective named capabilities granted to current connection. |
Example
Request
{
"jsonrpc": "2.0",
"id": "1f9a258e-2f86-4bc9-a31b-ec842eb79a42",
"method": "clients.current"
}
Response
{
"jsonrpc": "2.0",
"id": "1f9a258e-2f86-4bc9-a31b-ec842eb79a42",
"result": {
"paired": true,
"role": "member",
"capabilities": []
}
}
clients.delete
Access: Localhost only.
Revoke a paired client. Existing encrypted sessions remain active until they disconnect; future sessions cannot authenticate.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| clientId | string | Yes | Opaque client ID from clients. |
Result
Returns an empty object {} on success.
Example
{
"jsonrpc": "2.0",
"id": "clients-delete-1",
"method": "clients.delete",
"params": {"clientId": "client-01J2"}
}
{
"jsonrpc": "2.0",
"id": "clients-delete-1",
"result": {}
}
clients.pair.start
Access: Localhost only.
Start a pairing approval window and return PIN for remote client. First paired client is always assigned admin; later clients default to member when role is omitted.
Parameters
An optional object:
| Key | Type | Required | Description |
|---|---|---|---|
| role | string | No | Role granted after pairing: admin or member. Defaults to member after first client. |
Result
| Key | Type | Required | Description |
|---|---|---|---|
| pin | string | Yes | Temporary pairing PIN for remote client. |
| expiresAt | number | Yes | PIN expiration time as Unix seconds. |
See encryption and pairing for remote pairing exchange.
Example
{
"jsonrpc": "2.0",
"id": "clients-pair-start-1",
"method": "clients.pair.start",
"params": {"role": "member"}
}
{
"jsonrpc": "2.0",
"id": "clients-pair-start-1",
"result": {
"pin": "123456",
"expiresAt": 1783685100
}
}
clients.pair.cancel
Access: Localhost only.
Cancel active pairing approval window.
Parameters
None.
Result
Returns an empty object {} on success.
Example
{
"jsonrpc": "2.0",
"id": "clients-pair-cancel-1",
"method": "clients.pair.cancel"
}
{
"jsonrpc": "2.0",
"id": "clients-pair-cancel-1",
"result": {}
}
Input
Direct platform input control for remote control use cases. These methods bypass the token pipeline entirely: no hooks, history, or sound effects are triggered.
The input macro format is identical to what goes after the : in a ZapScript input.keyboard or input.gamepad command on a token. Each character is a separate keypress, {...} groups are special keys/combos, and \ is the escape character. Macros also support {delay:duration}, {hold:key:duration}, {press:key}, and {release:key}. Press and release have short forms {_key} and {^key}. Delay and explicit hold durations are limited to 30 seconds.
Persistent {press:key} and {release:key} input is available only over supported WebSocket input sessions. A press remains held across requests from that WebSocket until its matching release. Each WebSocket owns its held keys and buttons; one connection cannot release another connection's input. Core releases all owned input when the WebSocket disconnects, input execution fails, or Core shuts down. HTTP JSON-RPC requests reject persistent press and release tokens because HTTP has no durable session lifecycle.
input.keyboard
Access: All clients.
Press keyboard keys using the ZapScript input macro format.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| keys | string | Yes | Input macro string. Each character is a keypress, {...} for special keys (e.g. {enter}, {f9}, {ctrl+q}). WebSocket requests may use {press:key} and {release:key} to hold a key across requests. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"method": "input.keyboard",
"params": {
"keys": "abc{enter}"
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"result": null
}
input.gamepad
Access: All clients.
Press gamepad buttons using the ZapScript input macro format.
Parameters
An object:
| Key | Type | Required | Description |
|---|---|---|---|
| buttons | string | Yes | Input macro string. Each character is a button press, {...} for named buttons (e.g. {up}, {start}, {l1}). WebSocket requests may use {press:button} and {release:button} to hold a button across requests. |
Result
Returns null on success.
Example
Request
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-2345-6789-abcd-ef0123456789",
"method": "input.gamepad",
"params": {
"buttons": "^^vv<><>BA{start}"
}
}
Response
{
"jsonrpc": "2.0",
"id": "b2c3d4e5-2345-6789-abcd-ef0123456789",
"result": null
}
Screenshot
screenshot
Access: All clients.
Capture a screenshot of the current platform display. Returns the image as base64-encoded data and the path where it was saved on disk.
Currently supported on MiSTer only. Other platforms will return an error.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| path | string | Yes | Path where the screenshot was saved on disk. |
| data | string | Yes | Base64-encoded image data. |
| size | number | Yes | Size of the image data in bytes. |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"method": "screenshot"
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"result": {
"path": "/media/fat/screenshots/MiSTer_20260329_181500.png",
"data": "iVBORw0KGgo...",
"size": 245760
}
}
Updates
update.check
Access: Localhost or any paired client.
Check if a newer version of Zaparoo Core is available. Returns version information, release notes, and everything a client needs to decide what to offer: whether the device is eligible for updates at all, whether the release has reached this device yet, and what is currently stopping one being installed.
A check makes the device fetch and verify signed release metadata and write the result to its data directory, which is why it is not open to unpaired remote clients.
On development builds, updateAvailable is always false and eligibility is development.
Parameters
None.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| currentVersion | string | Yes | The currently running version. |
| updateAvailable | boolean | Yes | Whether a newer version is available. |
| autoInstall | boolean | Yes | Whether the device installs updates on its own. Mirrors the updateInstall setting. |
| latestVersion | string | No | The latest available version (if the check succeeded). |
| releaseNotes | string | No | Release notes for the latest version. |
| channel | string | No | The update channel the check used: stable or beta. |
| eligibility | string | No | Whether this install can take OTA updates: eligible, development, unsupported (this install cannot be replaced in place, such as a Windows install under a directory Zaparoo cannot write to), or managed (a package manager owns the install, so it should do the installing). An install that cannot be replaced reports unsupported even when a package manager owns it, because that is the one an install is actually refused for. |
| checkedAt | string | No | RFC3339 timestamp of when the release metadata was last fetched. |
| rolloutHeld | boolean | No | The release is newer but has not reached this device's share of the fleet yet. Applying it by hand still works; automatic installs wait. |
| blockedBy | object | No | What is stopping an update being applied right now. Absent when nothing is. |
| deferredReason | string | No | Why an automatic install has been putting this version off. Same values as blockedBy.reason. |
| deferredSince | string | No | RFC3339 timestamp of when this version was first put off. After 24 hours an automatic install goes ahead through the signals that expire. |
| lastResult | object | No | How the previous update finished. Present until a newer result replaces it. |
blockedBy
| Key | Type | Required | Description |
|---|---|---|---|
| reason | string | Yes | Machine-readable reason, from the table below. |
| message | string | Yes | Human-readable explanation, suitable for showing as-is. |
| forceable | boolean | Yes | Whether update.apply with force: true goes ahead anyway. False means the refusal stands whatever is passed. |
Reasons:
| Reason | Forceable | Meaning |
|---|---|---|
| mediaIndexing | No | The media database is being generated. |
| mediaOptimizing | No | The media database is being optimised. |
| mediaScraping | No | Media metadata is being scraped. |
| backupActive | No | A backup, restore or upload is running. |
| readerWriting | No | A reader is part-way through writing a token. |
| restoreActive | No | A restore is holding the databases. |
| activeMedia | Yes | Media is playing and a restart would close it. |
| backgroundMedia | Yes | Media is playing in the background. |
| activePlaylist | Yes | A playlist is running. |
| powerLow | No | The battery is below the level an install needs. |
| powerUnknown | Yes | The battery level could not be read. |
| apiBusy | Yes | The API has not been idle long enough. Automatic installs only. |
blockedBy is what a client should read before offering an update: hide or disable the button when forceable is false, and offer to go ahead when it is true.
lastResult
| Key | Type | Required | Description |
|---|---|---|---|
| at | string | Yes | RFC3339 timestamp of when the update finished. |
| outcome | string | Yes | succeeded, rolledBack (the new build would not start and the old one was put back), rollbackBlocked (the rollback could not be completed), or recoveryRequired. |
| fromVersion | string | No | The version before the update. |
| toVersion | string | No | The version the update was to. |
| detail | string | No | What went wrong, when something did. |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"method": "update.check"
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"result": {
"currentVersion": "2.9.1",
"latestVersion": "2.10.0",
"updateAvailable": true,
"autoInstall": false,
"releaseNotes": "...",
"channel": "stable",
"eligibility": "eligible",
"checkedAt": "2026-08-18T09:30:00Z",
"blockedBy": {
"reason": "activeMedia",
"message": "media is playing",
"forceable": true
}
}
}
update.apply
Access: Requires update.apply.
Download and apply the latest available update, then gracefully restart the service. The response is sent to the client before the restart occurs.
Before anything is downloaded the device checks that it is safe to install: nothing writing to the databases, no backup or token write in progress, nothing playing, and enough battery. A refusal comes back as an error whose message is the same text update.check reports in blockedBy.message. Call update.check first to know in advance, and whether force would get past it.
The battery is checked twice — once before the download and again immediately before the install begins — because a download long enough to matter is also long enough to outlive a charger being unplugged.
This method has no request timeout: the download and install run to completion or unwind on their own. Applying an update is treated as low priority, so it does not delay reader scans or playback control.
While it runs, the device sends update.state notifications.
Parameters
| Key | Type | Required | Description |
|---|---|---|---|
| force | boolean | No | Go ahead through the signals update.check reports as forceable, such as media playing that the restart will close. It does not get past anything that risks data or a device without the power to finish. Defaults to false. |
Parameters may be omitted entirely, which is the same as force: false.
Result
| Key | Type | Required | Description |
|---|---|---|---|
| previousVersion | string | Yes | The version before the update. |
| newVersion | string | Yes | The version after the update. |
Example
Request
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"method": "update.apply",
"params": {
"force": true
}
}
Response
{
"jsonrpc": "2.0",
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"result": {
"previousVersion": "2.9.1",
"newVersion": "2.10.0"
}
}