// getting-started / quick-start

Quick Start

Get up and running with the Vembric API in under 5 minutes.

step 1 — get your api key

Log into the Vembric dashboard and navigate to Settings → API Keys to generate your key.

// keep your API key secret — never expose it in client-side code

step 2 — make your first request

Fetch a list of games from the API.

curl https://api.vembric.io/v1/games \
  -H "Authorization: Bearer YOUR_API_KEY"

step 3 — read the response

A successful response looks like this:

{
  "data": [
    { "id": "gm_01", "title": "Chess", "status": "active" },
    { "id": "gm_02", "title": "Poker", "status": "active" }
  ],
  "next_cursor": "cursor_xyz",
  "has_more": true
}