Get short-term weather forecast
Korea Weather Forecast
Returns the 단기예보 (short-term forecast) batch published at one announcement (base_date + base_time) for one 5km grid point (nx, ny): one row per (category, fcst_date, fcst_time), spanning up to ~3 days ahead across categories such as TMP (temperature), POP (precipitation probability), SKY (sky condition), PTY (precipitation type), REH (humidity), WSD (wind speed), and others. Backed by data.go.kr's 기상청_단기예보 조회서비스 (getVilageFcst). base_date/base_time/nx/ny are all required — KMA only publishes 8 batches per day and only for a specific grid coordinate, so all four must be known in advance (e.g. from a coordinate-conversion lookup and a recent announcement time).
Provider-first APIFuse endpoint
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
"https://api.apifuse.com/v1/korea-weather-forecast/get-vilage-fcst" \
-d '{
"base_date": "2026-07-17",
"base_time": "0500",
"limit": 100,
"nx": 60,
"ny": 127,
"page": 1
}'모든 Gateway 호출에는 APIFuse API key가 필요합니다. Connection badge가 표시된 operation은 추가로 X-ApiFuse-Connection-Id 헤더를 전달하세요.
인증 규칙 반영
provider catalog의 auth mode를 기반으로 필요한 인증 방식이 상세 페이지와 OpenAPI에 함께 반영됩니다.
Gateway 경로 자동 연결
provider/operation 조합이 그대로 APIFuse Gateway 경로와 Platform 문서 링크에 반영됩니다.
스키마 기반 문서화
요청 예시와 응답 스키마가 provider 정의에서 자동으로 내려와 항상 최신 상태를 유지합니다.