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

# Answered questions about a variant, most helpful first (limit=)

> Answered questions about one variant, most helpful first, up to limit. An answer that quotes a comment made elsewhere stays on the site.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/variants/{slug}/questions
openapi: 3.1.0
info:
  title: Truckaurbus API
  version: v1
  description: >-
    The public v1 API at https://api.truckaurbus.com/v1. Authenticate with an
    API key in the Authorization header: Bearer tab_live_...


    Every figure carries its kind and its date. The API never carries the page a
    value came from.
servers:
  - url: https://api.truckaurbus.com
security: []
paths:
  /v1/variants/{slug}/questions:
    get:
      tags:
        - v1
      summary: Answered questions about a variant, most helpful first (limit=)
      description: >-
        Answered questions about one variant, most helpful first, up to limit.
        An answer that quotes a comment made elsewhere stays on the site.
      operationId: identity_api_v1_variant_questions
      parameters:
        - in: path
          name: slug
          required: true
          schema:
            title: Slug
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 20
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/QuestionOut'
                title: Response
                type: array
          description: OK
components:
  schemas:
    QuestionOut:
      properties:
        answers:
          default: []
          items:
            $ref: '#/components/schemas/AnswerOut'
          title: Answers
          type: array
        asker_name:
          default: ''
          title: Asker Name
          type: string
        created_at:
          format: date-time
          title: Created At
          type: string
        id:
          title: Id
          type: integer
        status:
          title: Status
          type: string
        text:
          title: Text
          type: string
        variant_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Variant Name
        variant_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Variant Slug
      required:
        - id
        - text
        - status
        - created_at
      title: QuestionOut
      type: object
    AnswerOut:
      properties:
        badge:
          default: ''
          title: Badge
          type: string
        by:
          title: By
          type: string
        created_at:
          format: date-time
          title: Created At
          type: string
        helpful:
          default: 0
          title: Helpful
          type: integer
        text:
          title: Text
          type: string
        verified:
          default: false
          title: Verified
          type: boolean
      required:
        - by
        - text
        - created_at
      title: AnswerOut
      type: object

````