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

# Generate quiz embedding

> Generate quiz embedding



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi post /api/v1/admin/embeddings
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/admin/embeddings:
    post:
      tags:
        - Admin
      summary: Generate quiz embedding
      description: Generate quiz embedding
      operationId: postApiV1AdminEmbeddings
      responses:
        '200':
          description: Quiz embedding generated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                required:
                  - success

````