curl --request GET \
--url https://api.avala.ai/api/v1/slices/{owner_name}/list/ \
--header 'X-Avala-Api-Key: <api-key>'{
"count": 123,
"results": [
{
"name": "<string>",
"slug": "<string>",
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"owner_name": "<string>",
"organization": {
"name": "<string>",
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>"
},
"visibility": "public",
"sub_slices": [
{
"type": "dataset_items",
"dataset_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dataset_item_uids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"filters": {}
}
],
"source_data": {},
"status": "pending",
"featured_slice_item_urls": [
"<string>"
],
"item_count": 123
}
],
"next": "<string>",
"previous": "<string>"
}Slices belonging to an owner that are visible to the current user
curl --request GET \
--url https://api.avala.ai/api/v1/slices/{owner_name}/list/ \
--header 'X-Avala-Api-Key: <api-key>'{
"count": 123,
"results": [
{
"name": "<string>",
"slug": "<string>",
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"owner_name": "<string>",
"organization": {
"name": "<string>",
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>"
},
"visibility": "public",
"sub_slices": [
{
"type": "dataset_items",
"dataset_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dataset_item_uids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"filters": {}
}
],
"source_data": {},
"status": "pending",
"featured_slice_item_urls": [
"<string>"
],
"item_count": 123
}
],
"next": "<string>",
"previous": "<string>"
}API key for authentication. Generate one in Mission Control Settings > Security & Identity.
Which field to use when ordering the results.
A page number within the paginated result set.
Number of results to return per page.
Sets the CursorPagination offset when cursor is also set. e.g. cursor=...&offset=1
Sets the CursorPagination reverse when cursor is also set. e.g. cursor=...&reverse=1.
Was this page helpful?