> ## 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 live listing, without the seller's number

> One live listing: the vehicle, its year and kilometres, the asking price with its date, photographs and the seller's kind. No contact key leaves through a key: a buyer reaches the seller on truckaurbus.com.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/market/listings/{listing_id}
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/market/listings/{listing_id}:
    get:
      tags:
        - v1
      summary: One live listing, without the seller's number
      description: >-
        One live listing: the vehicle, its year and kilometres, the asking price
        with its date, photographs and the seller's kind. No contact key leaves
        through a key: a buyer reaches the seller on truckaurbus.com.
      operationId: identity_api_v1_listing
      parameters:
        - in: path
          name: listing_id
          required: true
          schema:
            title: Listing Id
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListingDetailOut'
          description: OK
components:
  schemas:
    ListingDetailOut:
      properties:
        axle_config:
          default: ''
          title: Axle Config
          type: string
        comparable_new_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Comparable New Inr
        condition:
          additionalProperties: true
          default: {}
          title: Condition
          type: object
        created_at:
          format: date-time
          title: Created At
          type: string
        dealer_name:
          default: ''
          title: Dealer Name
          type: string
        dealer_slug:
          default: ''
          title: Dealer Slug
          type: string
        dealer_verified:
          default: false
          title: Dealer Verified
          type: boolean
        description:
          default: ''
          title: Description
          type: string
        district:
          title: District
          type: string
        fuel:
          default: ''
          title: Fuel
          type: string
        hours:
          anyOf:
            - type: integer
            - type: 'null'
          title: Hours
        id:
          title: Id
          type: integer
        inspection_mode:
          default: declared
          title: Inspection Mode
          type: string
        inspection_note:
          default: ''
          title: Inspection Note
          type: string
        is_owner:
          default: false
          title: Is Owner
          type: boolean
        kind:
          default: vehicle
          title: Kind
          type: string
        km:
          title: Km
          type: integer
        machine_class:
          default: ''
          title: Machine Class
          type: string
        machine_slug:
          default: ''
          title: Machine Slug
          type: string
        maker_name:
          title: Maker Name
          type: string
        maker_slug:
          title: Maker Slug
          type: string
        owners:
          title: Owners
          type: integer
        photo_rows:
          default: []
          items:
            additionalProperties: true
            type: object
          title: Photo Rows
          type: array
        photos:
          default: []
          items:
            type: string
          title: Photos
          type: array
        pin:
          title: Pin
          type: string
        price_inr:
          title: Price Inr
          type: integer
        seller:
          default: owner
          title: Seller
          type: string
        seller_profile:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Seller Profile
        sold_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Sold At
        sold_price_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sold Price Inr
        state_code:
          title: State Code
          type: string
        status:
          title: Status
          type: string
        updates:
          default: []
          items:
            additionalProperties: true
            type: object
          title: Updates
          type: array
        variant_name:
          title: Variant Name
          type: string
        variant_slug:
          title: Variant Slug
          type: string
        vehicle_class:
          title: Vehicle Class
          type: string
        video_url:
          default: ''
          title: Video Url
          type: string
        year:
          title: Year
          type: integer
      required:
        - id
        - variant_slug
        - variant_name
        - maker_slug
        - maker_name
        - vehicle_class
        - year
        - km
        - owners
        - price_inr
        - state_code
        - pin
        - district
        - status
        - created_at
      title: ListingDetailOut
      type: object

````