← Back to AgentMarket.cloud

Getting Started

Go from zero to live energy data in under 60 seconds.

1 Discover Available APIs

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.

2 Fetch Real Energy Data

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"

3 Add Weather Context

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.

4 Build Your Agent

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")

5 Book Professional Services

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.

Available Markets

40+ countries with real-time data:

Data Sources

Integration Options

Need Help?

Email vertrieb@stromfee.ai or visit stromfee.ai