ApiFuseApiFuse
API Reference

다이소 상품 검색

키워드로 다이소 온라인몰 상품을 검색합니다.

다이소 상품 검색

키워드로 다이소 상품명, 가격, 상품 ID, 이미지, 카테고리를 반환합니다.

엔드포인트

GET /v1/daiso-products

Upstream

  • Base URL: https://prdm.daisomall.co.kr
  • Path: /ssn/search/FindStoreGoods

요청 파라미터

파라미터타입필수기본값설명
querystring-검색 키워드
pageinteger1페이지 번호
page_sizeinteger30페이지당 결과 수

요청 예시

{
  "query": "정리함",
  "page": 1,
  "page_size": 30
}

응답 스키마

아래 스키마는 adapter의 Zod output schema에서 직접 생성됩니다.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "상품명"
          },
          "price": {
            "type": "integer",
            "minimum": -9007199254740991,
            "maximum": 9007199254740991,
            "description": "가격"
          },
          "product_id": {
            "type": "string",
            "description": "상품 ID"
          },
          "image_url": {
            "description": "상품 이미지 URL",
            "type": "string"
          },
          "category": {
            "description": "카테고리",
            "type": "string"
          }
        },
        "required": [
          "name",
          "price",
          "product_id"
        ],
        "additionalProperties": false
      }
    },
    "total": {
      "description": "전체 검색 결과 수",
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "items"
  ],
  "additionalProperties": false
}

응답 예시

{
  "data": {
    "items": [
      {
        "name": "투명 정리함",
        "price": 3000,
        "product_id": "10345678",
        "image_url": "https://img.daisomall.co.kr/files/product.jpg",
        "category": "수납"
      }
    ],
    "total": 1
  },
  "pagination": null,
  "meta": {
    "source": "daiso-products",
    "fetchedAt": "2026-03-24T00:00:00.000Z"
  }
}

On this page