
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeI've definitely seen this issue come up before with the Vercel Dashboard Widget plugin when dealing with team projects!
The key issue is that when your Vercel project lives under a Team account (not your personal account), you need to provide the teamId parameter when making API calls to Vercel. Without it, the API defaults to looking in your personal account, which is why you're getting empty results.
Option 1: Via Vercel Dashboard (Easiest)
Option 2: Via Vercel API You can use the List Teams endpoint to get all teams associated with your account:
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://api.vercel.com/v2/teamsThis will return a list of teams with their IDs. Look for the team that owns your project.
Option 3: Via Vercel CLI
vercel teams listOnce you have your Team ID, you need to include it when fetching projects:
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://api.vercel.com/v9/projects?teamId=YOUR_TEAM_ID"Without the teamId parameter, the API only returns projects from your personal account.
When you set up the Vercel Dashboard Widget in your Sanity dashboard, you'll need to provide both:
The plugin README specifically mentions this in its configuration: "If your project is assigned to a team account, you must provide both team and project IDs."
Make sure your Vercel access token has the appropriate permissions for the team. If you're listed as an owner but the token was created before you joined the team or doesn't have team scope, it might not work properly. You may need to regenerate your token from Account → Settings → Tokens while ensuring it has access to your team's resources.
Hope this helps! Let me know if you're still having issues after adding the Team ID.
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store