Vrodex

Public API

Programmatic access to bookings and more. Authenticate with an API key minted from your Vrodex dashboard, then call the endpoints below from your own systems.

Authentication

Send your key as a bearer token. Mint keys under Management → Integrations → API keys in the Vrodex dashboard.

Authorization: Bearer vk_your_api_key_here

Create a booking

Times are UTC. Send Idempotency-Key to safely retry; replays return the original booking.

curl -X POST https://api.vrodex.com/v1/bookings \
  -H "Authorization: Bearer vk_..." \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: $(uuidgen)" \
  -d '{
    "startTime": "2026-05-10T18:00:00Z",
    "groupSize": 2,
    "customer": {
      "firstName": "Anna",
      "lastName": "de Vries",
      "email": "anna@example.com",
      "phone": "+31612345678"
    }
  }'

What's available

Bookings

Create bookings on behalf of a tenant.

Availability

Coming soon — look up open timeslots.

Webhooks

Coming soon — push notifications for booking lifecycle events.