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

# /goonet/listings/search

> Search Goo-net used-car listings by maker, model, prefecture, city, body type, color, body-price, model-year, mileage and displacement ranges, accident repair history, transmission, drive, plus non-smoking and registered-unused flags, with sort order. Returns listing cards with id, url, brand, model, grade, prices, year, mileage, inspection, condition rating, dealer info and image.

**Price:** 20 credits per 20 results

**💡 AI Hint:** Search Goo-net used-car listings. All filters optional except count. maker/model are uppercase slugs ('TOYOTA'/'PRIUS'); omit both to search all makers. body_type (multi-select list) only applies when no model is set; color is a multi-select list. Filters: prefecture, city (municipality code), price_min/price_max (JPY body price), year_min/year_max, mileage_min/mileage_max (km), displacement_min/displacement_max (cc), repair_history (any/without/with), transmission (any/at), drive (any/four_wd), non_smoking, unused, leather_seats, seat_heater, turbo, eco_car, plug_in_hybrid; sort by recommended/price_asc. Each result has id, url, brand, model, grade, price, total_price, monthly_payment, year, mileage, inspection, displacement, color, transmission, body_type, condition ratings, dealer and image.



## OpenAPI

````yaml /openapi-filtered.json post /api/goonet/listings/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/goonet/listings/search:
    post:
      tags:
        - /goonet
      summary: /goonet/listings/search
      description: >-
        Search Goo-net used-car listings by maker, model, prefecture, city, body
        type, color, body-price, model-year, mileage and displacement ranges,
        accident repair history, transmission, drive, plus non-smoking and
        registered-unused flags, with sort order. Returns listing cards with id,
        url, brand, model, grade, prices, year, mileage, inspection, condition
        rating, dealer info and image.


        **Price:** 20 credits per 20 results


        **💡 AI Hint:** Search Goo-net used-car listings. All filters optional
        except count. maker/model are uppercase slugs ('TOYOTA'/'PRIUS'); omit
        both to search all makers. body_type (multi-select list) only applies
        when no model is set; color is a multi-select list. Filters: prefecture,
        city (municipality code), price_min/price_max (JPY body price),
        year_min/year_max, mileage_min/mileage_max (km),
        displacement_min/displacement_max (cc), repair_history
        (any/without/with), transmission (any/at), drive (any/four_wd),
        non_smoking, unused, leather_seats, seat_heater, turbo, eco_car,
        plug_in_hybrid; sort by recommended/price_asc. Each result has id, url,
        brand, model, grade, price, total_price, monthly_payment, year, mileage,
        inspection, displacement, color, transmission, body_type, condition
        ratings, dealer and image.
      operationId: __api_goonet_listings_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GoonetListingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GoonetListingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GoonetListingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        maker:
          anyOf:
            - type: string
            - type: 'null'
          description: Maker slug, uppercase (e.g. 'TOYOTA', 'NISSAN', 'BMW')
          examples:
            - TOYOTA
        model:
          anyOf:
            - type: string
            - type: 'null'
          description: Model slug, uppercase (e.g. 'PRIUS'); requires maker
          examples:
            - PRIUS
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/GoonetPrefecture'
            - type: 'null'
          description: Prefecture
        city:
          anyOf:
            - type: string
            - type: 'null'
          description: Municipality code within the prefecture
          examples:
            - '331040'
        body_type:
          items:
            $ref: '#/components/schemas/GoonetBodyType'
          type: array
          description: Body types (multi-select; only applied when no model is set)
          default: []
        color:
          items:
            $ref: '#/components/schemas/GoonetColor'
          type: array
          description: Body colors (multi-select)
          default: []
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum body price (JPY)
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum body price (JPY)
        year_min:
          anyOf:
            - type: integer
              minimum: 1950
            - type: 'null'
          description: Minimum model year
        year_max:
          anyOf:
            - type: integer
              minimum: 1950
            - type: 'null'
          description: Maximum model year
        mileage_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum mileage (km)
        mileage_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum mileage (km)
        displacement_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum engine displacement (cc)
        displacement_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum engine displacement (cc)
        repair_history:
          $ref: '#/components/schemas/GoonetRepairHistory'
          description: Accident repair history filter
          default: any
        transmission:
          $ref: '#/components/schemas/GoonetTransmission'
          description: Transmission filter
          default: any
        drive:
          $ref: '#/components/schemas/GoonetDrive'
          description: Drive type filter
          default: any
        non_smoking:
          type: boolean
          description: Only non-smoking vehicles
          default: false
        unused:
          type: boolean
          description: Only registered-unused vehicles
          default: false
        leather_seats:
          type: boolean
          description: Only vehicles with leather seats
          default: false
        seat_heater:
          type: boolean
          description: Only vehicles with seat heaters
          default: false
        turbo:
          type: boolean
          description: Only turbo / supercharged vehicles
          default: false
        eco_car:
          type: boolean
          description: Only eco-car / low-emission vehicles
          default: false
        plug_in_hybrid:
          type: boolean
          description: Only plug-in hybrid vehicles
          default: false
        sort:
          $ref: '#/components/schemas/GoonetSort'
          description: Sort order
          default: recommended
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - count
    GoonetListingCard:
      properties:
        '@type':
          type: string
          default: GoonetListingCard
        id:
          type: string
        url:
          type: string
        brand:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        grade:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        monthly_payment:
          anyOf:
            - type: number
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        mileage:
          anyOf:
            - type: integer
            - type: 'null'
        inspection:
          anyOf:
            - type: string
            - type: 'null'
        displacement:
          anyOf:
            - type: integer
            - type: 'null'
        has_repair_history:
          anyOf:
            - type: boolean
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        interior_rating:
          anyOf:
            - type: integer
            - type: 'null'
        exterior_rating:
          anyOf:
            - type: integer
            - type: 'null'
        dealer:
          anyOf:
            - $ref: '#/components/schemas/GoonetCardDealer'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GoonetPrefecture:
      type: string
      enum:
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
        - '6'
        - '7'
        - '8'
        - '9'
        - '10'
        - '11'
        - '12'
        - '13'
        - '14'
        - '15'
        - '16'
        - '17'
        - '18'
        - '19'
        - '20'
        - '21'
        - '22'
        - '23'
        - '24'
        - '25'
        - '26'
        - '27'
        - '28'
        - '29'
        - '30'
        - '31'
        - '32'
        - '33'
        - '34'
        - '35'
        - '36'
        - '37'
        - '38'
        - '39'
        - '40'
        - '41'
        - '42'
        - '43'
        - '44'
        - '45'
        - '46'
        - '47'
    GoonetBodyType:
      type: string
      enum:
        - SEDAN
        - COMPACT
        - COUPE
        - WAGON
        - MINIVAN
        - SUV
        - OPEN
        - KEI
        - KEITRUCK
        - BUS
    GoonetColor:
      type: string
      enum:
        - WHITE
        - BLACK
        - GRAY
        - RED
        - BLUE
        - GREEN
        - YELLOW
        - ORANGE
        - BROWN
        - BEIGE
        - GOLD
        - PURPLE
        - PINK
        - WINE
        - GUNMETA
        - ETC
    GoonetRepairHistory:
      type: string
      enum:
        - any
        - without
        - with
    GoonetTransmission:
      type: string
      enum:
        - any
        - at
    GoonetDrive:
      type: string
      enum:
        - any
        - four_wd
    GoonetSort:
      type: string
      enum:
        - recommended
        - price_asc
    GoonetCardDealer:
      properties:
        '@type':
          type: string
          default: GoonetCardDealer
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````