> ## 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/catalog

> Get the Goo-net new-car catalog (specifications) for a model by maker and model slug: per release-year model variants with price range, description and a grade table (grade name, model code, displacement, doors, transmission, drive, seats, fuel economy, weight, dimensions and new-car price).

**Price:** 10 credits

**💡 AI Hint:** Fetch the Goo-net catalog/spec sheet for a model by maker+model slugs ('TOYOTA'/'PRIUS'). Returns model_id, title and releases[], each with name (release-year label), price_min/price_max (new-car JPY) and grades[] (name, model_code, displacement, doors, transmission, drive, seats, fuel_economy, weight, dimensions, price).

**⚠️ Common errors:** 412: Catalog not found (no catalog exists for this maker/model slug combination)



## OpenAPI

````yaml /openapi-filtered.json post /api/goonet/catalog
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/catalog:
    post:
      tags:
        - /goonet
      summary: /goonet/catalog
      description: >-
        Get the Goo-net new-car catalog (specifications) for a model by maker
        and model slug: per release-year model variants with price range,
        description and a grade table (grade name, model code, displacement,
        doors, transmission, drive, seats, fuel economy, weight, dimensions and
        new-car price).


        **Price:** 10 credits


        **💡 AI Hint:** Fetch the Goo-net catalog/spec sheet for a model by
        maker+model slugs ('TOYOTA'/'PRIUS'). Returns model_id, title and
        releases[], each with name (release-year label), price_min/price_max
        (new-car JPY) and grades[] (name, model_code, displacement, doors,
        transmission, drive, seats, fuel_economy, weight, dimensions, price).


        **⚠️ Common errors:** 412: Catalog not found (no catalog exists for this
        maker/model slug combination)
      operationId: __api_goonet_catalog_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GoonetCatalogPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GoonetCatalog'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GoonetCatalogPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        maker:
          type: string
          minLength: 1
          description: Maker slug, uppercase (e.g. 'TOYOTA')
          examples:
            - TOYOTA
        model:
          type: string
          minLength: 1
          description: Model slug, uppercase (e.g. 'PRIUS')
          examples:
            - PRIUS
      type: object
      required:
        - maker
        - model
    GoonetCatalog:
      properties:
        '@type':
          type: string
          default: GoonetCatalog
        maker:
          type: string
        model:
          type: string
        model_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        releases:
          items:
            $ref: '#/components/schemas/GoonetCatalogRelease'
          type: array
          default: []
      type: object
      required:
        - maker
        - model
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GoonetCatalogRelease:
      properties:
        '@type':
          type: string
          default: GoonetCatalogRelease
        name:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        grades:
          items:
            $ref: '#/components/schemas/GoonetCatalogGrade'
          type: array
          default: []
      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
    GoonetCatalogGrade:
      properties:
        '@type':
          type: string
          default: GoonetCatalogGrade
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        model_code:
          anyOf:
            - type: string
            - type: 'null'
        displacement:
          anyOf:
            - type: integer
            - type: 'null'
        doors:
          anyOf:
            - type: integer
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        drive:
          anyOf:
            - type: string
            - type: 'null'
        seats:
          anyOf:
            - type: integer
            - type: 'null'
        fuel_economy:
          anyOf:
            - type: string
            - type: 'null'
        weight:
          anyOf:
            - type: string
            - type: 'null'
        dimensions:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````