Skip to content
Last updated

Retrieve a list of organizations that the current user has access to. Automatically checks if user's email domain matches any organization domains and grants access to new organizations if eligible.

GEThttps://api.aitronos.com/v1/organizations

Query Parameters

skip integer optional

Number of records to skip for pagination. Default: 0.

limit integer optional

Maximum number of records to return (1-100). Default: 100.

active_only boolean optional

Only return active organizations. Default: true.


Returns

An OrganizationListResponse object containing an array of organizations with pagination metadata.

Bash
curl "https://api.aitronos.com/v1/organizations" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

[
  {
    "id": "org_abc123",
    "name": "Acme Corporation",
    "description": "Main organization",
    "logo": "https://api.aitronos.com/v1/organizations/org_abc123/logo",
    "createdAt": "2025-01-15T10:30:00Z",
    "updatedAt": "2025-11-19T14:20:00Z"
  },
  {
    "id": "org_def456",
    "name": "Development Team",
    "description": "Development and testing",
    "logo": null,
    "createdAt": "2025-03-20T08:15:00Z",
    "updatedAt": "2025-11-18T16:45:00Z"
  }
]