/workspacesList workspaces
Returns all client workspaces for the authenticated Fleet account.
Example response
{
"workspaces": [
{
"id": "ws_abc123",
"domain": "client.com",
"buyerQuestion": "Best CRM for agencies?",
"citationScore": 62
}
]
}curl -s "https://getcitepilot.com/api/v1/workspaces" \
-H "Authorization: Bearer ck_live_YOUR_KEY"const res = await fetch("https://getcitepilot.com/api/v1/workspaces", {
headers: { Authorization: "Bearer ck_live_YOUR_KEY" },
});requests.get("https://getcitepilot.com/api/v1/workspaces", headers={"Authorization": "Bearer ck_live_YOUR_KEY"})