Get specific entity type information
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 });
Returns normalized pagination metadata and items for any TypesEntityType.
Entity list options. start_index defaults to 1, item_count defaults to 50,
and class is optional for class-filtered results.
TypesEntitiesListMetaResponse with pagination attributes and normalized items.
Entities by type resource
See
https://www.swcombine.com/ws/v2.0/documentation/types/entity_type/ SW Combine API Documentation