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

# Get a Target product

> Retrieve structured product details from Target.com by SKU.



## OpenAPI

````yaml get /v1/target/product
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/target/product:
    get:
      tags:
        - Target
      summary: Get a Target product
      description: >-
        Retrieves structured product details from Target.com: price, brand,
        rating, category, images, and description. Backed by our own maintained
        `target_product` Web Scraping API target. Requires a Starter plan or
        higher.
      operationId: getTargetProduct
      parameters:
        - name: product_id
          in: query
          required: true
          schema:
            type: string
            pattern: ^\d{8}$|^\d{10}$
        - name: delivery_type
          in: query
          required: false
          schema:
            description: Delivery method
            type: string
            enum:
              - pickup
              - delivery
              - shipping
        - name: delivery_zip
          in: query
          required: false
          schema:
            description: >-
              Zip code for delivery/shipping (required with those delivery
              types)
            type: string
            minLength: 3
            maxLength: 10
        - name: store_id
          in: query
          required: false
          schema:
            description: Target store ID (required for pickup)
            type: string
            minLength: 3
            maxLength: 4
        - name: geo
          in: query
          required: false
          schema:
            description: Country to use when submitting the request
            type: string
            minLength: 2
            maxLength: 64
      responses:
        '200':
          description: Structured Target product details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetProductResponse'
        '400':
          description: Invalid product_id or delivery parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Target dedicated endpoints require a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested product could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: >-
            Daily credit cap exceeded, or the upstream provider rate-limited the
            request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Target upstream failed or returned an unusable response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Target execution backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl "https://api.scrapio.dev/v1/target/product?product_id=92186007"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    TargetProductResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - target
        request_id:
          type: string
        product:
          type: object
          properties:
            id:
              type: string
            url:
              anyOf:
                - type: string
                  format: uri
                - type: 'null'
            title:
              anyOf:
                - type: string
                - type: 'null'
            brand:
              type: object
              properties:
                name:
                  anyOf:
                    - type: string
                    - type: 'null'
                url:
                  anyOf:
                    - type: string
                    - type: 'null'
              required:
                - name
                - url
              additionalProperties: false
            price:
              type: object
              properties:
                current:
                  anyOf:
                    - type: number
                    - type: 'null'
                discounted:
                  anyOf:
                    - type: boolean
                    - type: 'null'
              required:
                - current
                - discounted
              additionalProperties: false
            currency:
              anyOf:
                - type: string
                - type: 'null'
            in_stock:
              anyOf:
                - type: boolean
                - type: 'null'
            rating:
              type: object
              properties:
                count:
                  anyOf:
                    - type: integer
                      minimum: 0
                      maximum: 9007199254740991
                    - type: 'null'
                score:
                  anyOf:
                    - type: number
                    - type: 'null'
              required:
                - count
                - score
              additionalProperties: false
            category:
              type: object
              properties:
                name:
                  anyOf:
                    - type: string
                    - type: 'null'
                path:
                  anyOf:
                    - type: string
                    - type: 'null'
              required:
                - name
                - path
              additionalProperties: false
            images:
              type: object
              properties:
                main:
                  anyOf:
                    - type: string
                    - type: 'null'
                alternate:
                  type: array
                  items:
                    type: string
              required:
                - main
                - alternate
              additionalProperties: false
            description:
              anyOf:
                - type: string
                - type: 'null'
          required:
            - id
            - url
            - title
            - brand
            - price
            - currency
            - in_stock
            - rating
            - category
            - images
            - description
          additionalProperties: false
      required:
        - provider
        - request_id
        - product
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````