Go from zero to live energy data in under 60 seconds.
No signup, no API key. Just call the discovery endpoint:
curl https://agentmarket.stromfee.ai/api/v1/discover | python3 -m json.tool
You'll get a list of all 189+ available API endpoints with descriptions.
Get day-ahead electricity prices for any European market:
# Germany (DE_LU) curl "https://agentmarket.stromfee.ai/api/v1/data/prices?area=DE_LU&hours=24" # France curl "https://agentmarket.stromfee.ai/api/v1/data/prices?area=FR&hours=48" # All available markets curl "https://agentmarket.stromfee.ai/api/v1/data/prices?area=all&hours=1"
Combine price data with weather for demand prediction:
curl "https://agentmarket.stromfee.ai/api/v1/data/weather?city=berlin"
Returns temperature, wind speed, cloud cover, and solar radiation.
Example: A simple BESS arbitrage agent in Python:
import requests
API = "https://agentmarket.stromfee.ai/api/v1"
# Get today's prices
prices = requests.get(f"{API}/data/prices?area=DE_LU&hours=24").json()
# Find arbitrage opportunity
if prices.get("summary"):
spread = prices["summary"]["spread"]
bess_profit = spread * 10 # 10 MWh battery
print(f"Spread: {spread} EUR/MWh")
print(f"Daily BESS profit: {bess_profit} EUR")
if spread > 50:
print("HIGH ARBITRAGE - Activate!")
else:
print("Low spread - Hold")
Your agent can book engineering, software, voice agent, and IoT services via API. Humans pay via Stripe.
# List available paid services
curl https://agentmarket.stromfee.ai/api/v1/services
# Book a service (returns Stripe checkout URL)
curl -X POST https://agentmarket.stromfee.ai/api/v1/bookings \
-H "Content-Type: application/json" \
-d '{"service_id": "sw_charge_director", "email": "client@example.com"}'
# Check booking status
curl https://agentmarket.stromfee.ai/api/v1/bookings/bk_abc123
Flow: Agent books → Human pays via Stripe → API key auto-delivered (software/voice) or team contacts (engineering/IoT). See all services.
40+ countries with real-time data:
/openapi.json for automatic tool generationEmail vertrieb@stromfee.ai or visit stromfee.ai