Hello! Can someone help me out, I couldn’t find the endpoint to fetch all lists for project.
On your server check the rest API:
AYON REST API: Entity Lists
Look for Entity Lists.
AYON GraphQL: Entity Lists
Or check the GraphQL Explorer, and within a list check the entityLists
.
query MyQuery {
project(name: "test") {
entityLists {
edges {
node {
id
label
}
}
}
}
}
May return:
{
"data": {
"project": {
"entityLists": {
"edges": [
{
"node": {
"id": "3d2a0378584b11f0bf72fae9f94433f8",
"label": "List 7/3/2025 10:21:00 PM"
}
}
]
}
}
}
}
AYON Python API: Entity Lists
Are you looking for it in the AYON Python API, then it’s in the feedback list here: https://feedback.ayon.app/p/api-access-for-ayon-lists - Feel free to vote for it.
Actually, I think that’s your ticket