Skip to main content

Map API

The Map API powers map.rollyy.com - our interactive parking and EV charging map interface.

Overview

The Map API provides unified access to parking and EV charging data across 30+ countries, with real-time search and location-based queries.

Base URL

https://api.rollyy.com/v1

Key Endpoints

Search Places

Search for parking or EV charging stations near a location.

Endpoint: POST /v1/search

Request:

{
"query": "EV charging",
"latitude": 60.1699,
"longitude": 24.9384
}

Response:

{
"query": {
"category": "electric_vehicle_charging_station",
"location": "Helsinki"
},
"places": [
{
"name": "Scandic Marski",
"address": "Mannerheimintie 10",
"lat": 60.16766,
"lng": 24.941173,
"type": "ev",
"chargers": 4,
"available": 4,
"power": "22kW"
}
]
}

Used By