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

# Get apiv2organizations domains



## OpenAPI

````yaml https://api.osiro.com/doc get /api/v2/organizations/{orgId}/domains
openapi: 3.0.0
info:
  title: osiro API
  version: 2.0.0
servers: []
security: []
tags:
  - name: Funnel
    description: Public funnel rendering, submission, MFA, and analytics.
  - name: Training
    description: Org-scoped sales-training catalogs, sessions, and call records.
  - name: Attribution
    description: Cross-domain PostHog identity handoff for the marketing site.
paths:
  /api/v2/organizations/{orgId}/domains:
    get:
      tags:
        - Domains
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: orgId
          in: path
      responses:
        '200':
          description: Every domain the org owns or has shared into it
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    assetId:
                      type: string
                      format: uuid
                    hostname:
                      type: string
                    verified:
                      type: boolean
                    emailVerified:
                      type: boolean
                    isOwner:
                      type: boolean
                    ownerOrgName:
                      type: string
                    emailSender:
                      type: object
                      nullable: true
                      properties:
                        senderEmail:
                          type: string
                        replyTo:
                          type: array
                          nullable: true
                          items:
                            type: string
                      required:
                        - senderEmail
                        - replyTo
                    landingPage:
                      type: object
                      nullable: true
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                      required:
                        - id
                        - name
                  required:
                    - assetId
                    - hostname
                    - verified
                    - emailVerified
                    - isOwner
                    - emailSender
                    - landingPage
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
      required:
        - error

````