Discovery Service v1.0
The Protocol
Welcome to the developer portal. Here you'll find specifications for the endpoints powering my interactive systems.
POST
/api/chat
Interface to the AI Concierge with streaming support.
Parameters
- message: string
- lang: 'da' | 'en'
- persona: string
Response
ReadableStream (text/event-stream) GET / POST
/api/guestbook
Handles reading and posting messages to the guestbook.
Parameters
- name: string
- message: string
- avatar?: string
Response
JSON { success: boolean, entries?: Entry[] } GET
/api/now
Returns my current live status and active activity (emoji + text).
Parameters
- No parameters required
Response
JSON { status: string, emoji: string } Quick Start
curl -X GET https://antonebsen.dk/api/now \
-H "Accept: application/json"