Integrate

Bolt offers an effortless integration process, requiring no blockchain experience. Simply post your game stats to our REST API, and we'll manage the entire token minting process for you.

Use the form below to create an account. The Bolt team will deploy your own game contract, wire everything up on the backend, and get back to you with a game ID and API key.

Once you have your game ID and API key, you can start posting your game results to the Bolt API. We'll take care of the rest! Here is some sample code to help get you started:


curl -X POST \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
  "timestamp": 1672617600000,
  "userId": "user456",
  "os": "Android",
  "country": "Canada",
  "gameName": "My Game",
  "location": "Toronto",
  "score": 200,
  "level": 3
}
' \
"https://bolt-dev.lightlink.io/stats/{YOUR_GAME_ID}/"