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

# Get prefill token details

> Get the values stored against a prefill token.

<Info>Replace `{your-subdomain}` with your workspace’s subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>

<Note>
  This endpoint is public and requires no API key. It looks up only tokens created in the workspace that the subdomain belongs to.
</Note>


## OpenAPI

````yaml bundled/prefill-tokens.yaml GET /prefill_tokens/{prefill_token}
openapi: 3.0.3
info:
  title: NeetoCal Prefill Tokens APIs
  version: 2.0.0
servers:
  - description: NeetoCal APIs
    url: https://{your-subdomain}.neetocal.com/api/external/v2
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Prefill tokens
    description: >-
      APIs to prefill a booking form without exposing personal data in the
      scheduling link.
paths:
  /prefill_tokens/{prefill_token}:
    get:
      tags:
        - Prefill tokens
      summary: Get prefill token details
      description: Get the values stored against a prefill token.
      parameters:
        - in: path
          name: prefill_token
          description: >-
            The prefill token to look up. You get this from the response of the
            [Create prefill token](/api-reference/prefill-tokens/create)
            endpoint.
          required: true
          schema:
            type: string
            example: pft_428518d70eb35deab7a8
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties: true
                    description: >-
                      The values stored against the token, exactly as they were
                      sent while creating it.
                    example:
                      name: Oliver Smith
                      email: oliver@example.com
                      phone: '+15551234567'
        '404':
          description: >-
            Not Found - The token does not exist in this workspace, or it has
            been deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Prefill token not found
      servers:
        - description: NeetoCal APIs
          url: https://{your-subdomain}.neetocal.com/api/v1/public
          variables:
            your-subdomain:
              default: spinkart
              description: >-
                Replace **spinkart** with your [workspace's
                subdomain](/getting-started/workspace-subdomain).

````