Galaxy planets resource
https://www.swcombine.com/ws/v2.0/documentation/galaxy/planets/ SW Combine API Documentation
Get planet by UID.
Returns the Planet object directly — not wrapped in a Page.
Planet
Page
The Planet entity.
const planet = await client.galaxy.planets.get({ uid: '9:123' });console.log(planet.name); // access properties directly, not planet.data Copy
const planet = await client.galaxy.planets.get({ uid: '9:123' });console.log(planet.name); // access properties directly, not planet.data
List all planets (paginated)
Optional
Optional pagination parameters
const planets = await client.galaxy.planets.list();const morePlanets = await client.galaxy.planets.list({ start_index: 51, item_count: 50 }); Copy
const planets = await client.galaxy.planets.list();const morePlanets = await client.galaxy.planets.list({ start_index: 51, item_count: 50 });
Galaxy planets resource
See
https://www.swcombine.com/ws/v2.0/documentation/galaxy/planets/ SW Combine API Documentation