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

> Generates a secure, time-limited shareable link that allows users to view test results without authentication. This feature requires an active subscription with whitelabel_reports enabled and provides both standard and custom branded URLs based on organization settings.

# Generate shareable link for result



## OpenAPI

````yaml post /test_framework/v1/results/{id}/create_shareable_link_token/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /test_framework/v1/results/{id}/create_shareable_link_token/:
    post:
      tags:
        - Results
      summary: Generate shareable link for result
      description: >-
        Generates a secure, time-limited shareable link that allows users to
        view test results without authentication. Requires an active
        subscription.
      operationId: create-shareable-link-token_2
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this result.
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SchemaPostCreateShareableLinkToken'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SchemaPostCreateShareableLinkToken'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SchemaPostCreateShareableLinkToken'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaCreateShareableLinkTokenResponse'
          description: ''
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  field_name:
                    type: array
                    items:
                      type: string
          description: ''
      security:
        - api_key: []
components:
  schemas:
    SchemaPostCreateShareableLinkToken:
      type: object
      properties:
        expire_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Optional expiration date/time for the token (ISO 8601 format)
    SchemaCreateShareableLinkTokenResponse:
      type: object
      properties:
        token:
          type: string
          description: >-
            Unique token identifier for the shareable link, used for
            authentication and access control
        shareable_link:
          type: string
          description: >-
            Complete URL for the shareable link that can be distributed to
            external users
      required:
        - shareable_link
        - token
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````