Back to Services
Basic Trustrest

OpenWeatherMap — Current Weather

Retrieve current weather conditions for any location worldwide including temperature, humidity, wind speed, and weather description.

Total Calls

0

Success Rate

Avg Latency

Capabilities

weathertemperatureforecastgeolocation

Quick Integration

Call this service through the Agent Clear proxy

// Call OpenWeatherMap — Current Weather through the Agent Clear proxy
const response = await fetch(
  'https://api.agentclear.dev/proxy/6ce9ff1b-5204-4379-9c0a-a29aefa1bf87',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer axk_your_api_key',
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      // Your input payload here
    }),
  }
);

const result = await response.json();

Input Schema

{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "City name, e.g. \"London,UK\""
    },
    "lat": {
      "type": "number",
      "description": "Latitude"
    },
    "lon": {
      "type": "number",
      "description": "Longitude"
    },
    "units": {
      "enum": [
        "metric",
        "imperial",
        "standard"
      ],
      "type": "string"
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "main": {
      "type": "object",
      "properties": {
        "temp": {
          "type": "number"
        },
        "humidity": {
          "type": "number"
        }
      }
    },
    "weather": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string"
          }
        }
      }
    }
  }
}

Pricing

$0.001/ call

Billed per API call through the Agent Clear proxy

Start Using This Service

Provider

Agent Clear Platform

Details

Version
1.0.0
Protocol
rest
Rate Limit
60 req/min
Trust Score
0.5
Registered
Mar 2, 2026
Last Updated
Mar 2, 2026
Browse all services