POST
/
get_weather
날씨 정보 조회
curl --request POST \
  --url https://api.tryvox.co/functions/v1/get_weather \
  --header 'Content-Type: application/json' \
  --data '{
  "city": "<string>"
}'
{
  "result": {
    "city": "<string>",
    "condition": "<string>",
    "temperature": {
      "celsius": 123,
      "fahrenheit": 123
    },
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Body

application/json

도시 이름을 포함하는 JSON 페이로드

city
string
required

날씨를 조회할 도시 이름

Response

날씨 정보 조회 성공

result
object