SENLAY
Sensory Intelligence Layer
App
Docs
Get API Key
Developer Dashboard
Manage your API keys and usage
Email
Password
Sign In
Don't have an account?
Register
Your API Keys
Key
Name
Tier
Total Requests
Status
+ Generate New Key
Quick Start
curl:
curl -H "Authorization: Bearer YOUR_KEY" \ "http://YOUR_HOST/api/v1/pwm?lat=36.01&lng=-5.60"
Python:
import requests pwm = requests.get( "http://YOUR_HOST/api/v1/pwm", params={"lat": 36.01, "lng": -5.60}, headers={"Authorization": "Bearer YOUR_KEY"} ).json() # Inject into any AI system prompt: print(pwm["context_string"])
JavaScript:
const res = await fetch( "http://YOUR_HOST/api/v1/pwm?lat=36.01&lng=-5.60", { headers: { Authorization: "Bearer YOUR_KEY" } } ); const pwm = await res.json(); console.log(pwm.context_string);