🔨 In Development — This section is still being developed and may change.
Retrieve a list of organizations that the current user has access to. Only shows organizations the authenticated user is a member of.
Bash
- Bash
- Python
- JavaScript
curl https://api.freddy.aitronos.com/v1/organizations \
-H "Authorization: Bearer $FREDDY_API_KEY"[
{
"id": "ORG_797C4DDB256A300C",
"name": "Aitronos Corp",
"email": "admin@aitronos.com",
"is_active": true,
"role": "owner",
"joined_at": "2025-01-15T10:30:00Z"
},
{
"id": "ORG_B66136CBB1304C98",
"name": "Personal Projects",
"email": "user@example.com",
"is_active": true,
"role": "member",
"joined_at": "2025-01-16T14:20:00Z"
}
]