> ## 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/dealers/search

> Search Goo-net used-car dealers by prefecture and optional municipality. Returns dealer cards with id, url, name, description, address, opening hours, closed days, rating, review count, inventory size and image.

**Price:** 20 credits per 20 results

**💡 AI Hint:** Search Goo-net dealers by prefecture (and optional city municipality code). Each result has id, url, name, description, address, opening_hours, closed_days, rating, review_count, stock_count, labels and image.



## OpenAPI

````yaml /openapi-filtered.json post /api/goonet/dealers/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/dealers/search:
    post:
      tags:
        - /goonet
      summary: /goonet/dealers/search
      description: >-
        Search Goo-net used-car dealers by prefecture and optional municipality.
        Returns dealer cards with id, url, name, description, address, opening
        hours, closed days, rating, review count, inventory size and image.


        **Price:** 20 credits per 20 results


        **💡 AI Hint:** Search Goo-net dealers by prefecture (and optional city
        municipality code). Each result has id, url, name, description, address,
        opening_hours, closed_days, rating, review_count, stock_count, labels
        and image.
      operationId: __api_goonet_dealers_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GoonetDealersSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GoonetDealerCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GoonetDealersSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        prefecture:
          $ref: '#/components/schemas/GoonetPrefecture'
          description: Prefecture to list dealers in
        city:
          anyOf:
            - type: string
            - type: 'null'
          description: Municipality code within the prefecture
          examples:
            - '131016'
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - prefecture
        - count
    GoonetDealerCard:
      properties:
        '@type':
          type: string
          default: GoonetDealerCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        opening_hours:
          anyOf:
            - type: string
            - type: 'null'
        closed_days:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        stock_count:
          anyOf:
            - type: integer
            - type: 'null'
        labels:
          items:
            type: string
          type: array
          default: []
        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'
    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

````