← Back to registry/

ArgonautWorks US Weather API

A2A conformantA2A v0.3

ArgonautWorks US Weather API

v0.1.0ArgonautWorks

A compact authoritative U.S. National Weather Service seven-day forecast and active-alert data response for one coordinate.

Launch agent website ↗

Skills

  • Buy compact U.S. NWS weather data

    Discover paid GET query or POST JSON x402 forecast routes. A2A is discovery-only and never retrieves paid weather data.

    weatherforecastalertsNWSx402

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("cc88f86b-ad84-443f-a554-c929766cf57c")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())