> ## Documentation Index
> Fetch the complete documentation index at: https://docs.athenahq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Organization Members

> Returns all members of your organization, including user details (email, first/last name) and their organization role. Requires a global API key.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/organizations/members
openapi: 3.1.0
info:
  title: AthenaHQ API
  description: >-
    AthenaHQ API provides programmatic access to manage your websites and
    prompts for AI-powered content optimization.
  version: 1.0.0
  contact:
    email: support@athenahq.ai
servers:
  - url: https://api.athenahq.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Basics
    description: Core API operations for managing websites and prompts
  - name: Metrics
    description: Metrics and analytics endpoints for tracking AI visibility
  - name: Billing
    description: Billing and credits endpoints for managing usage
  - name: Team Management
    description: Endpoints for managing team members and invitations
  - name: Groups
    description: Endpoints for managing groups of websites
  - name: Content
    description: >-
      Endpoints for accessing Content Hub data — tabs, tracked URLs, and per-URL
      prompt breakdowns.
  - name: Pitch Workspace
    description: >-
      Endpoints for accessing pitch workspace reports — org-scoped pitch runs
      with competitors, prompts, attributes, and aggregate metrics.
paths:
  /api/v1/organizations/members:
    get:
      tags:
        - Team Management
      summary: List Organization Members
      description: >-
        Returns all members of your organization, including user details (email,
        first/last name) and their organization role. Requires a global API key.
      operationId: listOrgMembers
      responses:
        '200':
          description: Successful response with the list of members
          content:
            application/json:
              schema:
                type: object
                properties:
                  members:
                    type: array
                    items:
                      $ref: '#/components/schemas/OrgMemberListItem'
                required:
                  - members
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - Global API key required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: 'Forbidden: global API key required'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    OrgMemberListItem:
      type: object
      description: A member of an organization, with user details
      required:
        - user_id
        - email
        - role
        - created_at
      properties:
        user_id:
          type: string
          format: uuid
          description: Unique identifier of the user
        email:
          type: string
          format: email
          description: The user's email address
        first_name:
          type: string
          nullable: true
          description: The user's first name, if set
        last_name:
          type: string
          nullable: true
          description: The user's last name, if set
        role:
          type: string
          description: >-
            The user's role in the organization, as its slug: `admin`, `viewer`,
            `editor`, `billing`, or a custom role's id (e.g. `contentmanager`).
            `admin` and `viewer` are unchanged from prior versions.
        created_at:
          type: string
          format: date-time
          description: When the org membership was created (UTC)
    Error:
      type: object
      description: Error response object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. You can create one
        [here](https://app.athenahq.ai/organization?tab=api).

````