Get a current U.S
Get a current U.S. weather forecast from NOAA and the National Weather Service by latitude and longitude. Use this weather API when an agent needs forecast temperature, conditions, wind, day/night periods, or detailed local forecast text for U.S. coordinates.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
229 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402-trends-server.onrender.com/api/weather
| Category | Everything else |
|---|---|
| Provider host | x402-trends-server.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 229 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"lat": 33.68,
"lon": -117.18
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"lat": {
"description": "Latitude for the U.S. forecast location.",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lon": {
"description": "Longitude for the U.S. forecast location.",
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"coordinates": {
"additionalProperties": false,
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"location": {
"additionalProperties": false,
"properties": {
"city": {
"type": [
"string",
"null"
]
},
"state": {
"type": [
"string",
"null"
]
}
},
"required": [
"city",
"state"
],
"type": "object"
},
"payment": {
"type": "string"
},
"periods": {
"items": {
"additionalProperties": false,
"properties": {
"detailedForecast": {
"type": [
"string",
"null"
]
},
"endTime": {
"type": [
"string",
"null"
]
},
"isDaytime": {
"type": [
"boolean",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"shortForecast": {
"type": [
"string",
"null"
]
},
"startTime": {
"type": [
"string",
"null"
]
},
"temperature": {
"type": [
"number",
"null"
]
},
"temperatureUnit": {
"type": [
"string",
"null"
]
},
"windDirection": {
"type": [
"string",
"null"
]
},
"windSpeed": {
"type": [
"string",
"null"
]
}
},
"required": [],
"type": "object"
},
"type": "array"
},
"retrievedAt": {
"type": "string"
},
"source": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"status",
"source",
"coordinates",
"location",
"periods",
"retrievedAt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}