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

# Verify email with token and redirect

> Custom email verification handler that processes the token and redirects to frontend dashboard with new_user parameter.



## OpenAPI

````yaml https://api.weblinq.dev/doc get /v1/user/verify-email-token
openapi: 3.0.0
info:
  version: 1.0.0
  title: WebLinq API
  description: WebLinq API for web scraping, search, and content extraction
servers:
  - url: https://api.weblinq.dev
    description: Production API Server
  - url: http://localhost:8787
    description: Local Development Server
security: []
paths:
  /v1/user/verify-email-token:
    get:
      tags:
        - User
      summary: Verify email with token and redirect
      description: >-
        Custom email verification handler that processes the token and redirects
        to frontend dashboard with new_user parameter.
      parameters:
        - schema:
            type: string
          required: false
          name: token
          in: query
      responses:
        '302':
          description: Redirect to dashboard or sign-in
          headers:
            Location:
              schema:
                type: string
              required: true
        '400':
          description: Missing or invalid token
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      message:
                        type: string
                      code:
                        type: string
                      requestId:
                        type: string
                        format: uuid
                    required:
                      - message
                      - code
                required:
                  - success
                  - error
                example:
                  success: false
                  error:
                    message: Authentication required
                    code: UNAUTHORIZED
                    requestId: bf68e5de-f6ef-479f-9328-6d3f48d5b7d4
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      message:
                        type: string
                      code:
                        type: string
                      requestId:
                        type: string
                        format: uuid
                    required:
                      - message
                      - code
                required:
                  - success
                  - error
                example:
                  success: false
                  error:
                    message: Authentication required
                    code: UNAUTHORIZED
                    requestId: bf68e5de-f6ef-479f-9328-6d3f48d5b7d4

````