Skip to content
Last updated

🔨 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.
GEThttps://api.freddy.aitronos.com/v1/organizations

Returns

An array of OrganizationResponse objects.

Bash
curl https://api.freddy.aitronos.com/v1/organizations \
-H "Authorization: Bearer $FREDDY_API_KEY"

Response

[
  {
    "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"
  }
]