Skip to main content
GET
/
api
/
v0
/
repositories
/
all-users
List all repository users across repositories the user has access to.
curl --request GET \
  --url https://api.example.com/api/v0/repositories/all-users
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "username": "<string>",
      "avatar": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cantina.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

repositories
string<uuid>[] | null

Limit the users to specific repositories.

role
null | enum<string>

Limit the users to repositories in which the user (caller, not the returned users) has a certain role. Role of a user in the context of a repository.

Available options:
client,
reviewer,
judge,
triager,
admin

Response

List of repository users

items
object[]
required