Skip to content

1km Mesh Feel-like Forecast(CSV)

Overview

Provides feel-like forecast data calculated for each 1km grid in CSV format. Contains 72 hours of hourly forecast data. Forecast data includes feel-like index and feel-like temperature values. API supports up to 50 requests per second.

Endpoint

A dedicated endpoint will be provided with your API Key upon contract.

GET https://example.com/csv/batch/xxxxxxxxxx.csv

Request

shell
curl -s "https://example.com/csv/batch/xxxxxxxxxx.csv" \
    -H "X-API-Key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" > xxxxxxxxxx.csv

Response

CSV

NameDescriptionTypeFormatMissingSample
idRequest IDstring
latLatitudefloat
lonLongitudefloat
meshcodeMesh codeint8-digit number3rd mesh code
dateDatestring2021/6/1
hourHourint0-23
wxWeather codeint100-999-9999Weather Code・Icon(Observation)
tempTemperature(℃)float-9999
precPrecipitation(mm/h)float-9999Next 1 hour
arpressPressure(hPa)float-9999
wndspdWind speed(m/s)float-9999
wnddirWind directionint1-16-99Wind Direction Definitions
rhumHumidity(%)int-99
feeltmpFeel-like temperature(℃)float-9999
feelidxFeel-like indexint1-10-99Feel-like Index Definitions

Request ID

An ID is provided to classify the data. When providing CSV data by municipality, this includes the 5-digit municipal code issued by the Ministry of Internal Affairs.

Errors

StatusError CodeError MessageDescription
400400_001"key" is requiredRequired parameter not specified
400400_002"key" is invalid valueInvalid parameter type/format
400400_003"key" is out of rangeParameter value out of range
401401_001"X-API-Key" is requiredAPI key not provided
401401_002API Key is invalid valueInvalid API key
401401_003"Key" is out of rangeOutside authorized usage period/access location
403403_001"key" is out of rangeData out of range
404404_001Resource is not existInvalid resource (method/path) specified
404404_002Data is not foundInvalid location/date specified
429429_001Requests is too manyRequest rate limit per second exceeded
500500_001an error has occurredUnknown error occurred

Sample

Response (Success)

csv
id,lat,lon,meshcode,date,hour,wx,temp,prec,arpress,wndspd,wnddir,rhum,feeltmp,feelidx
01101,43.062638,141.353921,64414278,2022/12/21,5,200,-4,0,1015,0,10,79,-5,1
01101,43.062638,141.353921,64414278,2022/12/21,6,200,-4,0,1015,0,11,79,-5,1
.....

Response (Error)

json
{
  "requestId": "xxxxxxxxxxxxxxxxxx_xxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx==",
  "errors": [
    {
      "code": "401_001",
      "message": "request is unauthorized"
    }
  ]
}

All trademarks and registered trademarks are the property of their respective owners.