Skip to main content

Rollyy Data API

Unified parking and EV charging data for smart mobility

The Rollyy Data API provides real-time access to parking and EV charging infrastructure across municipalities and operators. Build mobility apps, manage parking operations, or integrate autonomous charging with a single, reliable API.

Key Features

🚗 Parking Management

Access parking spots, garages, and street parking data with real-time availability.

⚡ EV Charging

Find charging stations, check availability, and manage charging sessions.

🔌 OCPI 2.2.1 Roaming

Connect to any OCPI-compliant charging network. Start and stop sessions at CPOs across Europe via Virta, Shell, Hubject, and Gireve.

🪪 EV Pass

Driver identity, wallet, and session history. Each user gets a persistent rolo_id used across all charging and parking activity.

PostGIS-powered location search with radius queries and polygon filtering.

🔔 Real-time Updates

Live availability data for charging stations and parking spots.

🤖 Autonomous Operations

Manage robot charging jobs — the robot finds a charger, initiates an OCPI session, and handles the full charging lifecycle automatically.

🔐 Multi-Tenant

Secure tenant isolation with API key authentication.

Quick Example

# Search for charging stations near Helsinki
curl -H "X-API-Key: your-api-key" \
"https://api.rollyy.com/v1/places/search?lat=60.1699&lon=24.9384&radius=1000"
{
"data": [
{
"id": "place_123",
"name": "Central Charging Hub",
"location": { "lat": 60.1699, "lon": 24.9384 },
"charging_assets": 12,
"available_spots": 5
}
]
}

Use Cases

For Autonomous Robots

  • Locate nearest available EVSE
  • Initiate OCPI charging session
  • Monitor session and receive CDR
  • Trigger automatic payment on completion

For EV Drivers (EV Pass)

  • View charging history and receipts
  • Manage wallet balance
  • Find nearby chargers

For Municipalities

  • Aggregate parking data across vendors
  • Monitor occupancy and revenue
  • Provide unified citizen access

For Developers

  • Build EV charging apps
  • Integrate OCPI roaming
  • Create booking systems

Getting Started

  1. Get API Access - Request your API key
  2. Authentication - Learn how to authenticate
  3. OCPI - Connect to charging networks
  4. GitHub - View source code

API Endpoints

EndpointDescription
GET /v1/placesList all places
GET /v1/places/searchGeospatial search
GET /v1/parking-assetsList parking assets
GET /v1/charging-assetsList charging stations
GET /v1/availabilityReal-time availability
POST /v1/bookingsCreate a booking
POST /v1/robot-jobsCreate autonomous charging job
POST /ocpi/registerConnect to a CPO via OCPI
POST /ocpi/2.2.1/commands/START_SESSIONStart charging session
POST /ocpi/2.2.1/commands/STOP_SESSIONStop charging session
GET /v1/id/ev-passGet EV Pass profile
GET /v1/id/historyCharging and parking history
GET /v1/wallet/balanceWallet balance

Support