ApiFuseApiFuse
API Reference

다이소 매장 재고 조회

상품 ID와 위치로 근처 다이소 매장의 재고 보유 여부를 조회합니다.

다이소 매장 재고 조회

상품 ID와 현재 위치로 근처 매장의 재고 여부와 수량을 반환합니다.

엔드포인트

POST /v1/daiso-inventory

Upstream

  • Base URL: https://mapi.daisomall.co.kr
  • Path: /ms/msg/newIntSelStr

요청 파라미터

파라미터타입필수기본값설명
product_idstring-상품 ID
store_querystring``매장 검색어
latitudenumber37.5665현재 위도
longitudenumber126.978현재 경도

요청 예시

{
  "product_id": "10345678",
  "store_query": "강남",
  "latitude": 37.5665,
  "longitude": 126.978
}

응답 스키마

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

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "stores": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "store_name": {
            "type": "string",
            "description": "매장명"
          },
          "address": {
            "type": "string",
            "description": "주소"
          },
          "in_stock": {
            "type": "boolean",
            "description": "재고 보유 여부"
          },
          "quantity": {
            "description": "재고 수량",
            "type": "integer",
            "minimum": -9007199254740991,
            "maximum": 9007199254740991
          }
        },
        "required": [
          "store_name",
          "address",
          "in_stock"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "stores"
  ],
  "additionalProperties": false
}

응답 예시

{
  "data": {
    "stores": [
      {
        "store_name": "다이소 강남점",
        "address": "서울 강남구 강남대로 000",
        "in_stock": true,
        "quantity": 12
      }
    ]
  },
  "pagination": null,
  "meta": {
    "source": "daiso-inventory",
    "fetchedAt": "2026-03-24T00:00:00.000Z"
  }
}

On this page