Reduce response payloads by 50-80% with field selection. Request only the fields you need via query parameter or header.
?fields=temp,wind.speed,humidityX-Fields: temp,wind.speed,humidity# Full response (1.2KB)
GET /api/v1/proxy/open-meteo-forecast?latitude=37.5&longitude=127
# Field-selected response (200B)
GET /api/v1/proxy/open-meteo-forecast?latitude=37.5&longitude=127&fields=current_weather.temperature,current_weather.windspeed
{
"data": {
"current_weather.temperature": 22.5,
"current_weather.windspeed": 8.3
},
"meta": {
"field_selection": ["current_weather.temperature", "current_weather.windspeed"],
...
}
}data.rates.EUR)meta.field_selection