Skip to main content

AI Assistant API

The AI Assistant API powers ai.rollyy.com - our voice-activated assistant for finding parking and EV charging.

Overview

The AI Assistant API provides conversational AI capabilities with integrated location search, powered by Gemini AI.

Base URL

https://api.rollyy.com/v1/assistant

Endpoints

Chat

Send messages to the AI assistant and receive conversational responses.

Endpoint: POST /v1/assistant/chat

Request:

{
"contents": [
{
"role": "user",
"parts": [{"text": "Find me EV charging near Helsinki"}]
}
]
}

Response:

{
"candidates": [
{
"content": {
"parts": [{"text": "I can help you find EV charging stations in Helsinki."}],
"role": "model"
}
}
]
}

Used By