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

# Get apiv2tensorshotssharedaudio 

> Return the token-resolved object payload.



## OpenAPI

````yaml https://backend.tensorpix.ai/api/schema/ get /api/v2/tensorshots/shared/audio/{raw_token}/
openapi: 3.1.0
info:
  title: TensorPix OpenAPI Documentation
  version: 1.1.0
  termsOfService: https://tensorpix.ai/terms-conditions
  contact:
    name: TensorPix Dev Team
    email: devs@tensorpix.ai
servers:
  - url: https://backend.tensorpix.ai
security: []
externalDocs:
  url: https://docs.tensorpix.ai
  description: Check out the full TensorPix documentation.
paths:
  /api/v2/tensorshots/shared/audio/{raw_token}/:
    get:
      tags:
        - v2
      description: Return the token-resolved object payload.
      operationId: v2_tensorshots_shared_audio_retrieve
      parameters:
        - in: path
          name: raw_token
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudioAssetDetail'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedError'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
          description: ''
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitError'
          description: ''
      security:
        - {}
components:
  schemas:
    AudioAssetDetail:
      type: object
      description: Serializer for audio detail routes with source-job fields.
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          readOnly: true
          description: Human-readable asset name.
        created_at:
          type: string
          format: date-time
          readOnly: true
          description: Datetime when the record was created.
        file:
          type:
            - string
            - 'null'
          format: uri
          readOnly: true
          description: >-
            Audio file stored on S3. Pre-signed URL may expire. To generate a
            new URL, call the endpoint again. If the field is `null`, the audio
            hasn't been completely uploaded.
        duration_s:
          type: number
          format: double
          readOnly: true
          description: Audio duration in seconds.
        file_size:
          type: integer
          readOnly: true
          description: File size in bytes.
        bitrate:
          type:
            - integer
            - 'null'
          readOnly: true
          description: Audio bitrate in bits per second.
        sample_rate:
          type:
            - integer
            - 'null'
          readOnly: true
          description: Audio sample rate in Hz (e.g., 44100, 48000).
        channels:
          type:
            - integer
            - 'null'
          readOnly: true
          description: Number of audio channels (1=mono, 2=stereo, etc.).
        job_id:
          type:
            - string
            - 'null'
          description: Return the source-job primary key.
          readOnly: true
        job_type:
          type:
            - string
            - 'null'
          description: Return the source-job type name.
          readOnly: true
      required:
        - bitrate
        - channels
        - created_at
        - duration_s
        - file
        - file_size
        - id
        - job_id
        - job_type
        - name
        - sample_rate
    UnauthenticatedError:
      type: object
      description: Serializer stub used for simple documented error payloads.
      properties:
        detail:
          type: string
      required:
        - detail
    ForbiddenError:
      type: object
      description: Serializer stub used for simple documented error payloads.
      properties:
        detail:
          type: string
      required:
        - detail
    NotFoundError:
      type: object
      description: Serializer stub used for simple documented error payloads.
      properties:
        detail:
          type: string
      required:
        - detail
    RateLimitError:
      type: object
      description: Serializer stub used for simple documented error payloads.
      properties:
        detail:
          type: string
      required:
        - detail

````