Data infrastructure for AI agents
Weather, geocoding, and more — no signup required.
Current conditions and 7-day forecast. Accepts city names — no coordinate lookup required.
GET /v1/weather?location=Austin,TX
City names to coordinates and back. Forward and reverse geocoding in one endpoint.
GET /v1/geocode?q=Tokyo
Current time anywhere. Convert between zones. Know if it's business hours.
GET /v1/time?location=London
Get title, description, OG tags from any URL. Sanitized and safe.
GET /v1/url/meta?url=https://...
WHOIS data: registration, expiry, nameservers, registrar, availability.
GET /v1/domain?domain=example.com
Add days/weeks/months, business days, diff between dates.
GET /v1/date?from=today&add=30d
Format check, MX records, disposable detection.
GET /v1/email/validate?email=...
Country, city, ISP, timezone from any IP address.
GET /v1/ip?ip=8.8.8.8
Generate QR codes for any URL or text.
GET /v1/qr?data=https://...
170+ currencies, real-time conversion.
GET /v1/exchange?from=USD&to=EUR
Bitcoin, Ethereum, top 20 coins with 24h change.
GET /v1/crypto?coin=bitcoin
Tech, world, business, science, AI news via RSS.
GET /v1/news?topic=ai&limit=5
MD5, SHA256, base64, URL encode/decode.
GET /v1/hash?data=hello&type=sha256
# Get weather for any city — just use the name curl "https://agentlair.ai/v1/weather?location=Austin,TX" # Response { "location": { "query": "Austin,TX", "resolved": "Austin, Travis County, Texas", "lat": 30.27, "lon": -97.74 }, "current": { "temperature": 24.6, "condition": "Clear sky", "windspeed": 12.5 }, "forecast": [...] }
No signup required. Just make a request.
View Documentation