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

# Retrieve a normalized asset manifest for a test-session result

> Returns a normalized manifest of downloadable assets for the test-session result.



## OpenAPI

````yaml get /v1/test-sessions/{testSessionId}/results/{testSessionResultId}/assets
openapi: 3.0.0
info:
  title: Checkly Public API
  version: v1
  description: >-
    These are the docs for the newly released Checkly Public API. If you have
    any questions, please do not hesitate to get in touch with us.
servers:
  - url: https://api.checklyhq.com
security:
  - Bearer: []
tags: []
paths:
  /v1/test-sessions/{testSessionId}/results/{testSessionResultId}/assets:
    get:
      tags:
        - Test sessions
      summary: Retrieve a normalized asset manifest for a test-session result
      description: >-
        Returns a normalized manifest of downloadable assets for the
        test-session result.
      operationId: getV1TestsessionsTestsessionidResultsTestsessionresultidAssets
      parameters:
        - schema:
            type: string
            format: uuid
            description: Test session ID.
          required: true
          description: Test session ID.
          name: testSessionId
          in: path
        - schema:
            type: string
            format: uuid
            description: Test session result ID.
          required: true
          description: Test session result ID.
          name: testSessionResultId
          in: path
        - schema:
            type: array
            items:
              type: string
              enum:
                - log
                - trace
                - video
                - screenshot
                - pcap
                - report
                - file
            description: >-
              Filter assets by normalized asset type. Repeat the query parameter
              to include multiple types.
          required: false
          description: >-
            Filter assets by normalized asset type. Repeat the query parameter
            to include multiple types.
          name: type
          in: query
        - schema:
            type: string
            maxLength: 200
            description: >-
              Glob pattern matched case-insensitively against the asset name and
              archive entry path. Empty patterns are ignored.
          required: false
          description: >-
            Glob pattern matched case-insensitively against the asset name and
            archive entry path. Empty patterns are ignored.
          name: name
          in: query
        - schema:
            type: string
            format: uuid
            description: >-
              Your Checkly account ID, you can find it at
              https://app.checklyhq.com/settings/account/general
          required: false
          description: >-
            Your Checkly account ID, you can find it at
            https://app.checklyhq.com/settings/account/general
          name: x-checkly-account
          in: header
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetManifest'
        '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'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    AssetManifest:
      type: object
      properties:
        assets:
          type: array
          items:
            $ref: '#/components/schemas/AssetManifestEntry'
          description: Normalized assets for the result.
        truncated:
          type: boolean
          description: >-
            Whether the manifest omitted entries because the stored archive
            entry list exceeded the endpoint cap.
        entriesReturned:
          type: integer
          minimum: 0
          description: >-
            Number of archive entries represented in the response when the
            manifest is truncated.
        entriesTotal:
          type: integer
          minimum: 0
          description: >-
            Total number of manifestable archive entries found in storage when
            the manifest is truncated.
      required:
        - assets
    ApiError:
      type: object
      properties:
        statusCode:
          type: number
        error:
          type: string
        message:
          type: string
      required:
        - statusCode
        - error
        - message
    AssetManifestEntry:
      type: object
      properties:
        type:
          type: string
          enum:
            - log
            - trace
            - video
            - screenshot
            - pcap
            - report
            - file
          description: Normalized asset type.
        name:
          type: string
          minLength: 1
          description: Display/download name for the asset.
        url:
          type: string
          format: uri
          description: Authenticated API URL for downloading or redirecting to the asset.
        contentType:
          type: string
          minLength: 1
          description: Best-effort content type inferred from the asset metadata.
        source:
          type: object
          properties:
            type:
              type: string
              enum:
                - check-result
                - test-session-result
              description: Result endpoint scope that produced this asset entry.
            checkId:
              type: string
              format: uuid
              description: Check ID associated with this asset.
            checkName:
              type: string
              minLength: 1
              description: Check name associated with this asset.
            checkType:
              type: string
              minLength: 1
              description: Check type associated with this asset.
            resultId:
              type: string
              format: uuid
              description: Result ID associated with this asset.
            testSessionId:
              type: string
              format: uuid
              description: Test session ID associated with this asset.
          required:
            - type
          description: >-
            Stable source identifiers for correlating the asset to checks and
            results.
        archive:
          type: object
          properties:
            entryName:
              type: string
              minLength: 1
              description: File path inside the downloadable archive.
          required:
            - entryName
          description: Present when the asset is an entry inside a ZIP archive.
      required:
        - type
        - name
        - url
        - source
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: Bearer
      description: >-
        The Checkly Public API uses API keys to authenticate requests. You can
        get the API Key
        [here](https://app.checklyhq.com/settings/user/api-keys). Your API key
        is like a password:  keep it secure!

        Authentication to the API is performed using the Bearer auth method in
        the Authorization header and using the account ID.

        For example, set **Authorization** header while using cURL: `curl -H
        "Authorization: Bearer [apiKey]" "X-Checkly-Account: [accountId]"` 

````