list_projects
artstation.comLists public artwork projects from ArtStation's explore feed at https://www.artstation.com, with latest, trending, or community-curated sorting. Returns pagination metadata and complete project summaries with cover imagery and author information.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_projects?
Lists public artwork projects from ArtStation's explore feed at https://www.artstation.com, with latest, trending, or community-curated sorting. Returns pagination metadata and complete project summaries with cover imagery and author information. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sort, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"count": 0,
"has_more": true,
"per_page": 0,
"projects": [
{
"id": 0,
"url": "<string>",
"user": {
"id": 0,
"is_staff": true,
"username": "<string>",
"full_name": "<string>",
"pro_member": true,
"is_plus_member": true,
"is_school_account": true,
"is_studio_account": true,
"medium_avatar_url": "<string>",
"has_recruiter_badge": true
},
"icons": {
"pano": true,
"image": true,
"video": true,
"model3d": true,
"marmoset": true,
"video_clip": true,
"multiple_images": true
},
"title": "<string>",
"hash_id": "<string>",
"hide_as_adult": true,
"is_highlighted": true,
"small_square_cover_url": "<string>",
"smaller_square_cover_url": "<string>"
}
],
"next_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c8a23f38-419d-4463-92bb-b95c72286e28/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c8a23f38-419d-4463-92bb-b95c72286e28",
"variables": {
"sort": "trending",
"page": 1,
"per_page": 10
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c8a23f38-419d-4463-92bb-b95c72286e28") — the "list_projects" function, which lists public artwork projects from ArtStation's explore feed at https://www.artstation.com, with latest, trending, or community-curated sorting. Returns pagination metadata and complete project summaries with cover imagery and author information.. It takes sort (str), page (int), per_page (int). Return the result as structured JSON.