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

# Get Experiment Url On Dashboard By Name

> Return the Haiqu dashboard URL for one caller-owned experiment.

Use this tool when the caller wants a browser URL rather than the full
experiment object. Name matching is exact within the authenticated user
scope.

When to Use:
    - Call this when the user wants to open the experiment in the Haiqu
      dashboard rather than continue strictly inside MCP.
    - Call this when only a URL is needed and the full experiment object
      would be unnecessary noise.

Constraints:
    - Name matching is exact and scoped to the authenticated user.
    - The response is a small URL wrapper, not a full experiment payload.

Args:
    experiment_name: Exact experiment name to resolve.
    user: Authenticated user resolved from the API key.
    db: Active database session.

Returns:
    A small response object containing only the dashboard URL.

Raises:
    HTTPException: Raised with ``404`` when no caller-owned experiment with
        the requested name exists.



## OpenAPI

````yaml https://api.haiqu.ai/openapi.json get /ai/dashboard_url_by_name/{experiment_name}
openapi: 3.1.0
info:
  title: Haiqu API
  summary: Haiqu RESTful API service.
  description: Cloud service providing the access to Haiqu cloud runtime
  contact:
    name: Haiqu Inc.
    url: https://haiqu.ai/
    email: info@haiqu.ai
  version: 1.3.0
servers: []
security: []
paths:
  /ai/dashboard_url_by_name/{experiment_name}:
    get:
      summary: Get Experiment Url On Dashboard By Name
      description: |-
        Return the Haiqu dashboard URL for one caller-owned experiment.

        Use this tool when the caller wants a browser URL rather than the full
        experiment object. Name matching is exact within the authenticated user
        scope.

        When to Use:
            - Call this when the user wants to open the experiment in the Haiqu
              dashboard rather than continue strictly inside MCP.
            - Call this when only a URL is needed and the full experiment object
              would be unnecessary noise.

        Constraints:
            - Name matching is exact and scoped to the authenticated user.
            - The response is a small URL wrapper, not a full experiment payload.

        Args:
            experiment_name: Exact experiment name to resolve.
            user: Authenticated user resolved from the API key.
            db: Active database session.

        Returns:
            A small response object containing only the dashboard URL.

        Raises:
            HTTPException: Raised with ``404`` when no caller-owned experiment with
                the requested name exists.
      operationId: get_experiment_url_on_dashboard_by_name
      parameters:
        - name: experiment_name
          in: path
          required: true
          schema:
            type: string
            title: Experiment Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExperimentDashboardUrl'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyQuery: []
        - APIKeyHeader: []
components:
  schemas:
    ExperimentDashboardUrl:
      properties:
        url:
          type: string
          title: Url
      type: object
      required:
        - url
      title: ExperimentDashboardUrl
      description: |-
        Dashboard URL for an experiment.

        Attributes:
            url: URL to view the experiment on the Haiqu dashboard.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyQuery:
      type: apiKey
      in: query
      name: HAIQU_API_KEY
    APIKeyHeader:
      type: apiKey
      in: header
      name: authorization

````