client.slices.list()
List all slices for a given owner.Username or organization slug
Maximum number of slices to return
Pagination cursor from a previous response
Paginated list of slices
client.slices.get()
Retrieve a specific slice by owner and slug.Username or organization slug
Slice identifier slug
The requested slice object
client.slices.create()
Create a new slice.Name of the slice
Visibility setting (e.g., “public”, “private”)
List of sub-slice configurations
Organization slug to create the slice under
Number of items to randomly select from the slice
The newly created slice object
client.slices.list_items()
List all items in a specific slice.Username or organization slug
Slice identifier slug
Maximum number of items to return
Pagination cursor from a previous response
Paginated list of slice items
client.slices.get_item()
Retrieve a specific item from a slice.Username or organization slug
Slice identifier slug
Unique identifier of the slice item
The requested slice item object
Async Methods
All methods are available in async form viaclient.slices when using AsyncAvala: