GET
/
api
/
workers
import os
from brainbase_labs import BrainbaseLabs

client = BrainbaseLabs(
    api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),  # This is the default and can be omitted
)
workers = client.workers.list()
print(workers)
[
  {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "description": "<string>",
    "status": "<string>",
    "lastRefreshedAt": "2023-11-07T05:31:56Z",
    "teamId": "<string>"
  }
]

Authorizations

x-api-key
string
header
required

API key authentication

Response

200
application/json
List of workers
id
string
required
createdAt
string
required
updatedAt
string
required
name
string
required
teamId
string
required
description
string | null
status
string | null
lastRefreshedAt
string | null