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

# Get log details (playground auth)

> Gets detailed information about a specific playground log entry. Authenticated via JWT.



## OpenAPI

````yaml /spec/ai-logs.yaml get /v1/workspaces/{workspaceID}/playground/logs/{logID}
openapi: 3.0.1
info:
  title: AI - Logs
  description: >-
    Request logs for AI workspace inference operations. Logs track chat
    completions,

    embeddings, and image operations with usage and cost details.


    Parameters:

    - `teamID`: To access services in a team (query param or `x-teamid` header)


    Authentication: JWT Bearer token (for management) or API Key (for API key
    auth).
  termsOfService: '#'
  contact:
    email: info@liara.ir
  version: 1.0.0
servers:
  - url: https://ai.liara.ir
security:
  - jwt: []
tags:
  - name: Logs
    description: Request logs for inference operations
externalDocs:
  description: Find out more about Liara AI
  url: https://liara.ir
paths:
  /v1/workspaces/{workspaceID}/playground/logs/{logID}:
    get:
      tags:
        - Logs
      summary: Get log details (playground auth)
      description: >-
        Gets detailed information about a specific playground log entry.
        Authenticated via JWT.
      operationId: getLogDetailsPlayground
      parameters:
        - name: workspaceID
          in: path
          required: true
          description: The workspace ID
          schema:
            type: string
            pattern: ^[a-f0-9]{24}$
        - name: logID
          in: path
          required: true
          description: The log ID
          schema:
            type: string
            pattern: ^[a-f0-9]{24}$
      responses:
        '200':
          description: Log details
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Missing authentication
          content: {}
        '404':
          description: Log or workspace not found
          content: {}
components:
  securitySchemes:
    jwt:
      type: apiKey
      description: 'Enter the token with the `Bearer: ` prefix, e.g. "Bearer abcde12345"'
      name: Authorization
      in: header

````