Byte Engine Docs
Inspectorhttp

List entities

GET/entities

Returns factory-created entities known to the shared message bus. Each result includes the numeric handle used as a message target and every complete Rust type name associated with the entity. Use either type or its compatibility alias class to filter by one complete Rust type name.

Query Parameters

type?string

Complete Rust type name. Do not send this together with class.

Length1 <= length
class?string
Deprecated

Compatibility alias for type. Do not send both parameters.

Length1 <= length

Response Body

application/json

text/plain

curl -X GET "https://example.com/entities?type=byte_engine%3A%3Arendering%3A%3Acamera%3A%3ACamera"
[  {    "target": 47,    "types": [      "byte_engine::rendering::camera::Camera"    ]  }]