Skip to content
Docs

List project members

GEThttps://api.vercel.com/v1/projects/{idOrName}/members
Lists all members of a project.
https://api.vercel.com/v1/projects/{idOrName}/members
const response = await fetch('https://api.vercel.com/v1/projects/idOrName/members?limit=123&since=123&until=123&search=string&teamId=string&slug=string', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
Response
"value"
AuthorizationbearerToken

Default authentication mechanism

idOrNamestringRequired
The ID or name of the Project.
limitintegerOptional
Limit how many project members should be returned
sinceintegerOptional
Timestamp in milliseconds to only include members added since then.
untilintegerOptional
Timestamp in milliseconds to only include members added until then.
teamIdstringOptional
The Team identifier to perform the request on behalf of.
slugstringOptional
The Team slug to perform the request on behalf of.
200Paginated list of members for the project.
400One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
410Error