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

# /energystar/products

> Look up one ENERGY STAR certified model by its product id. Resolves the model through the programme-wide index and then returns the full certification record from the dataset for its product category, so the answer carries the measured performance figures the category is certified on — annual energy and water use, efficiency ratios against the federal standard, capacity and dimensions — alongside the brand, model name and number, UPC, certifying partner, the markets the model is certified for, the dates it was qualified and reached the market, and whether it meets the Most Efficient criteria.

**Price:** 1 credit

**⚠️ Common errors:** 412: No certified model carries that product id.



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/energystar/products
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/energystar/products:
    post:
      tags:
        - /energystar
      summary: /energystar/products
      description: >-
        Look up one ENERGY STAR certified model by its product id. Resolves the
        model through the programme-wide index and then returns the full
        certification record from the dataset for its product category, so the
        answer carries the measured performance figures the category is
        certified on — annual energy and water use, efficiency ratios against
        the federal standard, capacity and dimensions — alongside the brand,
        model name and number, UPC, certifying partner, the markets the model is
        certified for, the dates it was qualified and reached the market, and
        whether it meets the Most Efficient criteria.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No certified model carries that product id.
      operationId: __api_energystar_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnergystarProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EnergystarProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EnergystarProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        pd_id:
          type: string
          minLength: 1
      type: object
      required:
        - pd_id
    EnergystarProduct:
      properties:
        '@type':
          type: string
          default: EnergystarProduct
        id:
          type: string
        product_category:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        dataset_id:
          anyOf:
            - type: string
            - type: 'null'
        dataset_name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        model_number:
          anyOf:
            - type: string
            - type: 'null'
        energy_star_model_identifier:
          anyOf:
            - type: string
            - type: 'null'
        energy_star_partner:
          anyOf:
            - type: string
            - type: 'null'
        additional_model_information:
          anyOf:
            - type: string
            - type: 'null'
        upc:
          anyOf:
            - type: string
            - type: 'null'
        markets:
          items:
            type: string
          type: array
          default: []
        is_most_efficient:
          anyOf:
            - type: boolean
            - type: 'null'
        available_on_market_date:
          anyOf:
            - type: string
            - type: 'null'
        qualified_date:
          anyOf:
            - type: string
            - type: 'null'
        certified_date:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          additionalProperties: true
          type: object
          default: {}
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````