Startships - Gio85/swapi-ts-sdk GitHub Wiki

In order to fetch the data, the following methods can be used;

  • getSchema() which will return the resource schema
  • read() which will return the single resource
  • list() which will return the resources list

Examples:

  // Get the instance of the client
  const client = ApiClient.getInstance()

  const starships = await client.starships.list({ search: 'Wookie' })
  const starships = await client.starships.list({ page: 3 })
  const starshipsSchema = await client.starships.getSchema()
  const singleStarship = await client.starships.read('2')