API Reference
다이소 매장 재고 조회
상품 ID와 위치로 근처 다이소 매장의 재고 보유 여부를 조회합니다.
다이소 매장 재고 조회
상품 ID와 현재 위치로 근처 매장의 재고 여부와 수량을 반환합니다.
엔드포인트
POST /v1/daiso-inventory
Upstream
- Base URL:
https://mapi.daisomall.co.kr - Path:
/ms/msg/newIntSelStr
요청 파라미터
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
product_id | string | ✅ | - | 상품 ID |
store_query | string | ❌ | `` | 매장 검색어 |
latitude | number | ❌ | 37.5665 | 현재 위도 |
longitude | number | ❌ | 126.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"
}
}