Get specific entity type information by category and UID.
Returns the entity type object directly — not wrapped in a Page.
The entity type detail (e.g. TypesShipEntity, TypesVehicleEntity, etc.).
Get all entities of a type (paginated)
Entity type (plural, e.g., 'vehicles', 'ships'), optional class filter, and optional pagination parameters
const ships = await client.types.entities.list({ entityType: 'ships' });
const moreShips = await client.types.entities.list({ entityType: 'ships', start_index: 51, item_count: 50 });
const fighters = await client.types.entities.list({ entityType: 'ships', class: 'fighter', start_index: 1, item_count: 50 });
Entities by type resource
See
https://www.swcombine.com/ws/v2.0/documentation/types/entity_type/ SW Combine API Documentation