> ## 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.

# One question with its answers, the accepted one first (lang=)

> One question with its answers, the accepted one first, and the related questions. An answer that quotes a comment made elsewhere stays on the site; the keys that would name where it was said are dropped.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/circle/questions/{qid}
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/circle/questions/{qid}:
    get:
      tags:
        - v1
      summary: One question with its answers, the accepted one first (lang=)
      description: >-
        One question with its answers, the accepted one first, and the related
        questions. An answer that quotes a comment made elsewhere stays on the
        site; the keys that would name where it was said are dropped.
      operationId: identity_api_v1_circle_question
      parameters:
        - in: path
          name: qid
          required: true
          schema:
            title: Qid
            type: integer
        - in: query
          name: lang
          required: false
          schema:
            default: ''
            title: Lang
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
          description: OK

````