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

# Get Interview Config

> Return interview config (e.g. tokens per 30 min) so the client can show correct costs.



## OpenAPI

````yaml /api-reference/openapi-filtered.json get /api/interviews/config
openapi: 3.1.0
info:
  title: Aseed Insight API
  version: 0.1.0
servers:
  - url: https://app.aseed.ai/custdev
security: []
tags:
  - name: insight
    description: 'Core insight endpoints: records, transcripts, generation, and chat.'
    x-displayName: Insight
  - name: insight_public
    description: Public insight endpoints for shared/public access.
    x-displayName: Insight Public
  - name: projects
    description: Project management endpoints.
    x-displayName: Projects
  - name: project_reports
    description: Project report generation and management endpoints.
    x-displayName: Project Reports
  - name: project_reports_public
    description: Public project report endpoints.
    x-displayName: Project Reports Public
  - name: prompts
    description: Custom prompts management endpoints.
    x-displayName: Prompts
  - name: presets
    description: Presets and templates endpoints.
    x-displayName: Presets
  - name: agent
    description: AI agent threads and chat endpoints.
    x-displayName: Agent
  - name: interviews
    description: AI interviewer room and session endpoints.
    x-displayName: Interviews
  - name: webhooks
    description: Incoming webhook endpoints.
    x-displayName: Webhooks
paths:
  /api/interviews/config:
    get:
      tags:
        - interviews
      summary: Get Interview Config
      description: >-
        Return interview config (e.g. tokens per 30 min) so the client can show
        correct costs.
      operationId: get_interview_config_api_interviews_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterviewConfigResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    InterviewConfigResponse:
      properties:
        tokens_per_30_min:
          type: integer
          title: Tokens Per 30 Min
      type: object
      required:
        - tokens_per_30_min
      title: InterviewConfigResponse
      description: Public config for interview links (tokens per 30 min).
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````