List entities
GET
/entitiesReturns 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.
Length
1 <= lengthclass?stringDeprecated
Compatibility alias for type. Do not send both parameters.
Length
1 <= lengthResponse 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" ] }]