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

# Redeem Share Link

> Redeem a share link. Unauthenticated by design — possession of the token
is the credential, so it is consumed as soon as the view budget runs out.



## OpenAPI

````yaml /openapi.json get /share/{token}
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /share/{token}:
    get:
      tags:
        - SECRET SHARING
      summary: Redeem Share Link
      description: >-
        Redeem a share link. Unauthenticated by design — possession of the token

        is the credential, so it is consumed as soon as the view budget runs
        out.
      operationId: redeem_share_link_share__token__get
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
            title: Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SharedSecretResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SharedSecretResponse:
      properties:
        secrets:
          items:
            $ref: '#/components/schemas/SharedSecret'
          type: array
          title: Secrets
        views_remaining:
          type: integer
          title: Views Remaining
        expires_at:
          type: string
          format: date-time
          title: Expires At
      type: object
      required:
        - secrets
        - views_remaining
        - expires_at
      title: SharedSecretResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SharedSecret:
      properties:
        key:
          type: string
          title: Key
        value:
          type: string
          title: Value
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
      type: object
      required:
        - key
        - value
      title: SharedSecret
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````