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

# Buscar produto



## OpenAPI

````yaml https://api.datacrazy.io/v1/api/openapi/v1/json get /api/v1/products/{id}
openapi: 3.0.0
info:
  title: API CRM Datacrazy
  description: Versão 1.0 da API do CRM Datacrazy
  version: '1.0'
  contact: {}
servers:
  - url: https://api.g1.datacrazy.io
security: []
tags: []
paths:
  /api/v1/products/{id}:
    get:
      tags:
        - Produtos
      summary: Buscar produto
      operationId: ProductsV1Controller_get
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateUpdateProductDto'
      security:
        - access-token: []
components:
  schemas:
    CreateUpdateProductDto:
      type: object
      properties:
        id_sku:
          type: string
          example: SKU12345
          description: Id SKU do produto
        name:
          type: string
          example: Nome do Produto
          description: Nome do produto
        price:
          type: number
          example: 199.99
          description: Preço do produto
  securitySchemes:
    access-token:
      scheme: bearer
      bearerFormat: JWT
      type: http

````