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

# Verify embed token



## OpenAPI

````yaml /openapi-components.json get /api/v1/embed/verify
openapi: 3.0.0
info:
  title: StudyFetch API
  description: API documentation for StudyFetch
  version: '1.0'
  contact: {}
servers:
  - url: https://studyfetchapi.com
    description: Production API Server
security: []
tags: []
paths:
  /api/v1/embed/verify:
    get:
      tags:
        - Embed
      summary: Verify embed token
      operationId: verifyToken
      parameters:
        - name: token
          required: true
          in: query
          description: Embed token to verify
          schema:
            type: string
      responses:
        '200':
          description: Token is valid
        '401':
          description: Invalid token

````