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

# Get scraped product details

> Get detailed information about a scraped product including retailer availability



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/scraped-products/{id}
openapi: 3.1.0
info:
  title: Goods API
  version: 1.0.0
  description: >-
    API for Goods grocery operations - scanner app, admin dashboard, and
    customer features
  contact:
    name: Goods Team
    url: https://goods.app
servers:
  - url: http://localhost:3000
    description: Local development
  - url: https://dev.api.switchyard.run
    description: Development
  - url: https://api.switchyard.run
    description: Production
security: []
tags:
  - name: v1
    description: API v1 - unified domain-based endpoints
  - name: Scanner
    description: Scanner app endpoints for drivers and pickers
  - name: Sweeps
    description: Sweep management - retail store pickup operations
  - name: RFC Picks
    description: Ready-for-checkout picking operations
  - name: Inventory
    description: Inventory management and barcode lookup
  - name: Admin
    description: Admin dashboard endpoints
  - name: Orders
    description: Order management
  - name: Products
    description: Product catalog management
  - name: Notifications
    description: Push, email, SMS, and Slack notification management
paths:
  /v1/scraped-products/{id}:
    get:
      tags:
        - Scraped Products
      summary: Get scraped product details
      description: >-
        Get detailed information about a scraped product including retailer
        availability
      parameters:
        - schema:
            type: string
            format: uuid
            description: Scraped product UUID
            example: 550e8400-e29b-41d4-a716-446655440000
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Scraped product details
          content:
            application/json:
              schema:
                type: object
                properties:
                  product:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      brand:
                        type: string
                        nullable: true
                      description:
                        type: string
                        nullable: true
                      image_url:
                        type: string
                        nullable: true
                      barcode:
                        type: string
                        nullable: true
                      size:
                        type: string
                        nullable: true
                      size_uom:
                        type: string
                        nullable: true
                      is_active:
                        type: boolean
                      full_category_hierarchy:
                        type: string
                        nullable: true
                      created_at:
                        type: string
                      updated_at:
                        type: string
                      is_organic:
                        type: boolean
                        nullable: true
                      is_gluten_free:
                        type: boolean
                        nullable: true
                      is_vegan:
                        type: boolean
                        nullable: true
                      sellable_product:
                        type: object
                        nullable: true
                        properties:
                          id:
                            type: string
                            format: uuid
                          name:
                            type: string
                          selling_price:
                            type: number
                          is_active:
                            type: boolean
                          is_rfc_item:
                            type: boolean
                            nullable: true
                          category_name:
                            type: string
                            nullable: true
                          subcategory_name:
                            type: string
                            nullable: true
                        required:
                          - id
                          - name
                          - selling_price
                          - is_active
                          - is_rfc_item
                          - category_name
                          - subcategory_name
                        description: Sellable product detail
                      retailer_availability:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            retailer_name:
                              type: string
                              nullable: true
                            retailer_logo:
                              type: string
                              nullable: true
                            location_name:
                              type: string
                              nullable: true
                            is_in_stock:
                              type: boolean
                              nullable: true
                            is_available:
                              type: boolean
                              nullable: true
                            fulfillment_channel:
                              type: string
                              nullable: true
                            last_seen_at:
                              type: string
                              nullable: true
                          required:
                            - id
                            - retailer_name
                            - retailer_logo
                            - location_name
                            - is_in_stock
                            - is_available
                            - fulfillment_channel
                            - last_seen_at
                          description: Retailer availability info
                    required:
                      - id
                      - name
                      - brand
                      - description
                      - image_url
                      - barcode
                      - size
                      - size_uom
                      - is_active
                      - full_category_hierarchy
                      - created_at
                      - updated_at
                      - is_organic
                      - is_gluten_free
                      - is_vegan
                      - sellable_product
                      - retailer_availability
                    description: Scraped product detail
                required:
                  - product
                description: Get scraped product response
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                required:
                  - error
                description: Error response
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                required:
                  - error
                description: Error response

````