Skip to main content
GET
/
api
/
v1
/
teams
List workspaces
curl --request GET \
  --url https://nudgen.net/api/v1/teams \
  --header 'Authorization: Bearer <token>'
{
  "teams": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "role": "<string>",
      "isBetaTester": true
    }
  ],
  "activeTeam": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "role": "<string>",
    "isBetaTester": true
  },
  "isAdmin": true,
  "canCreateTeam": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.nudgen.net/llms.txt

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

Authorizations

Authorization
string
header
required

Personal Access Token created from Settings -> API Keys.

Response

Workspace list

teams
object[]
activeTeam
object
isAdmin
boolean
canCreateTeam
boolean