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

# List WebXR Links

> Returns all WebXR links stored in the organization’s library.



## OpenAPI

````yaml Get /v1/links
openapi: 3.1.0
info:
  title: ManageXR API
  description: API documentation for ManageXR
  version: 1.0.0
servers:
  - url: https://managexrapi.com
    description: ManageXR API Server
security:
  - basicAuth: []
paths:
  /v1/links:
    get:
      summary: List WebXR links
      description: Returns all WebXR links stored in the organization’s library.
      parameters:
        - name: organizationId
          in: query
          required: false
          schema:
            type: string
          description: >
            Unique identifier of the organization. This parameter is only
            necessary when using multi-organization API keys. 


            Defaults to the organizationId associated with the API key.
      responses:
        '200':
          description: A list of WebXR links
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/V1ContentLink'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 403
                  message:
                    type: string
                    example: Forbidden
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 403
                message: Forbidden
                error: ManageXR Error
components:
  schemas:
    V1ContentLink:
      type: object
      title: WebXR Link
      description: >-
        WebXR links deployed on the configuration will include the attributes
        listed below
      required:
        - contentType
        - id
        - title
        - url
        - iconUrl
        - createdAt
        - updatedAt
      properties:
        contentType:
          type: string
          enum:
            - link
          description: Type of content
        id:
          type: string
          description: Unique identifier of the webxr link
        title:
          type: string
          description: Title of the webxr link
        url:
          type: string
          format: uri
          description: WebXR link url to open in-headset
        iconUrl:
          type: string
          format: uri
          description: URL of the webxr link's icon
        createdAt:
          type: number
          description: Creation timestamp
          example: 1645615777448
        updatedAt:
          type: number
          description: Last update timestamp
          example: 1687352117203
      example:
        contentType: link
        id: A3t67LlxH99cKeprazuc
        title: Virtual College Tour
        url: https://www.youtube.com/watch?v=AyWLvrWBKHA
        iconUrl: https://firebasestorage.googleapis.com/v0/b/icon.png
        createdAt: 1706719137865
        updatedAt: 1706719137865
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        API key based authentication where <encoded-value> is the Base64
        encoding of `API_KEY_ID`:`API_KEY_SECRET`

        - **Username**: The API Key ID.

        - **Password**: The API Key Secret.

````