Skip to main content
Prezio provides two environments for different stages of your development lifecycle.

Available Environments

Sandbox

URL: https://sandbox.prezio.eu/api/ Auth: Bearer tokens (+ API keys for convenience)Development environment with limited data coverage and relaxed rate limits.

Production

URL: https://api.prezio.eu/api/ Auth: Bearer tokens onlyLive environment with complete data coverage and standard rate limits.

Key Differences

  • Sandbox: Limited coverage, delayed data, rate limits - for testing purposes
  • Production: Complete coverage, real-time data, contract required
Sandbox is provided as-is without service level guarantees and may change without notice.

Usage Examples

# Production
curl -X GET "https://api.prezio.eu/api/live/?country=DK&tariff_id=tar_123" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Sandbox (Bearer token - recommended)
curl -X GET "https://sandbox.prezio.eu/api/live/?country=DK&tariff_id=tar_123" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  
# Sandbox (API key - convenience)
curl -X GET "https://sandbox.prezio.eu/api/live/?country=DK&tariff_id=tar_123" \
  -H "Authorization: Token YOUR_API_KEY"
Production access requires a contract. Contact support@prezio.eu to enable access.
I