Get the current structured screen layout information. This endpoint returns detailed structural information about the UI elements currently displayed on the screen, which can be used for UI automation, element analysis, and accessibility purposes. The format varies by box type: Android boxes return XML format with detailed UI hierarchy information including element bounds, text content, resource IDs, and properties, while other box types may return different structured formats.
Enter your API Key in the format: Bearer <token>. Get it from https://gbox.ai
Box ID
"c9bdc193-b54b-4ddb-a035-5ac0c598d32d"
Structured screen layout information (XML format for Android boxes)
Screen layout content.
Android boxes (XML):
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<hierarchy rotation="0">
<node ... />
</hierarchy>
Browser (Linux) boxes (HTML):
<html>
<head><title>Example</title></head>
<body>
<h1>Hello World</h1>
</body>
</html>