
UK engineers and operators who want to include the book of dead website slot to their sites need comprehensive API documentation to start. This guide describes the Book of Dead slot API. It walks through the interfaces, data formats, and how to set it up, all with the UK’s regulated market in mind. You’ll learn about authorization, running spins, and handling the game’s well-known Expanding Symbol feature. The objective is a reliable, legally valid implementation.
Comprehending the Book of Dead API Design
The Book of Dead slot API is a REST-based service that uses JSON for transmitting and fetching data. Built for high availability, it keeps players involved even during heavy periods like major football matches. The layout splits the game logic server from the client-side interface. This split assures that findings, like reel stops and bonus triggers, are unpredictable and processed securely on the backend.
In a common integration, your platform is the client. It starts sessions and transmits player actions. An API gateway takes these requests and directs them to the appropriate game service. For UK operators, this framework enables the audit trails and data segregation the Gambling Commission demands. Understanding this flow helps with debugging and incorporating custom features like tournaments or special promotions.
The API is stateless. Every request must contain its own authentication and context. This strategy supports scalability and reliability, allowing the service to manage traffic spikes. To keep things seamless for users, even with network problems, you should include retry logic and connection pooling on your end.
Security and Safe Session Initialisation
Safety comes first. The Book of Dead API uses OAuth 2.0 client credentials for authorisation. You require a unique `client_id` and `client_secret` from the provider. All exchange happens over HTTPS, with a bearer token placed in the `Authorization` header. Since this token expires, your code must renew it automatically to avoid interrupting a player’s session.
To initiate a game session, send a POST request to `/session/start`. The payload needs the player’s unique ID (linked to your system), their currency (GBP), and language configuration. For UK compliance, you must also include the player’s current session ID from your responsible gambling tools. This allows the game connect with timeout and limit capabilities. The response provides you a `game_session_token` for all further communications.
We use strict IP whitelisting for server-to-server calls from UK operators. Also, every spin and financial transaction gets a digital signature. Your integration must validate these signatures with our public key to verify data hasn’t been modified. This step is crucial for legal UK operation and secures both you and the player from tampering.
Core Gameplay Endpoints: Spin and Payout
The key endpoint for play is `/game/spin`. A POST request to this endpoint executes a single spin at the player’s chosen stake. The request must include the `game_session_token`, the `stake` in GBP, and an non-mandatory `feature_buy` flag if you provide that. Your system needs to verify the player has sufficient funds before calling the API, because the API does not process wallet balances.
The spin response comes as a detailed JSON object. It holds a `reel_stops` array displaying each reel’s position and a `symbols_matrix` for your client to animate. The `winning_lines` array details any payline wins, listing the line number, symbol, and payout. Importantly, it indicates if the Free Spins bonus round was triggered, which occurs when three or more Book scatter symbols land anywhere.
For the UK market, the response contains required compliance fields. These include a `spin_timestamp` in UTC, a distinct `round_id` for audits, and the `total_payout`. You need to store this data indefinitely for UKGC reporting and any customer disputes. A best practice is to log it synchronously as soon as you receive the response, so nothing gets lost.
Managing the Free Spins Feature and Enlarging Icon
When the Free Spins feature activates, a separate process begins. The first base game spin reply marks the start. Your client then calls `/bonus/initiate` with the `round_id` from that spin. This provides the bonus data: how many free spins were granted and, most significantly, the randomly selected `expanding_symbol` for this game.
The Expanding Symbol is what turns Book of Dead engaging. During free spins, one regular symbol changes into an expanding wild. If this symbol appears, it extends to fill the whole reel, creating bigger wins. The API reply for each free spin plainly indicates if an enlargement occurred and the win factor that resulted. Your animation should show this enlargement clearly to match the game’s layout and what players expect.
You execute each free spin with a command to `/bonus/spin`. The run proceeds until all awarded spins are exhausted. The API keeps track of the bonus round status, so you only have to transmit the `bonus_round_id`. Wins build up, and the sum is given at the finish. Your user display should show the quantity of free spins available and the active expanding symbol, maintaining the player updated.
Transaction Integration and Reporting of Transactions
Accuracy of finances is essential. The Book of Dead API does not process real money. It only determines win amounts. Your platform must subtract the stake before calling the spin endpoint, then apply the winnings after you receive and confirm the result. This requires solid, atomic transaction logic on your backend to prevent race conditions or balance errors.
All money values in the API are in GBP, with two decimal places. The `payout` value in the response is the net win for that spin (the total win minus the stake). You deposit this amount to the player’s balance. UK operators also need to monitor `total_stake` and `total_wins` per player session to calculate Gross Gambling Yield for regulatory reports.
We offer a `/transactions/history` endpoint for reconciliation. You can query it with a date range or a specific `round_id` to retrieve a signed record of all transactions. UK licensees typically perform a daily reconciliation with this data. It verifies that your financial records match with the provider’s logs, creating a clear audit trail.
Error Processing and Regulatory Compliance for the UK Market
Effective error handling maintains stability. The API utilizes standard HTTP status codes along with a specific `error_code` and `message` in the response body. Common errors are `INSUFFICIENT_BALANCE` (which you should trap before the request), `SESSION_EXPIRED`, and `BET_LIMIT_EXCEEDED`. Your code must handle these seamlessly, perhaps by directing the player to a deposit page or clarifying a limit breach, following UK responsible gambling rules.
UK-specific compliance errors require attention. If a player’s self-exclusion or timeout triggers during a game, the API might send a `PLAYER_SUSPENDED` error. Your integration must stop the game session right away and redirect the player to a secure, non-gambling part of your site. Recording these events for your compliance team is compulsory. The same goes for age verification failures; gameplay must cease immediately.
Think about using a circuit breaker pattern for API calls. If you encounter several timeouts or server errors (5xx statuses) in a row, your system should back off and fail gracefully, maybe presenting a maintenance message. This improves the user experience and avoids your servers from overloading. Set up monitoring to alert your tech team if 4xx or 5xx error rates rise, so they can look into quickly.
Trialing and Modeling in a Sandbox Environment
Never go live without comprehensive testing in the sandbox. This environment mirrors the live API but uses test money and won’t impact real finances. You’ll get sandbox-only `client_id` and `client_secret` credentials. It enables you to simulate the whole player experience, from signing up and depositing to playing and withdrawing, so you can address any edge cases.
UK developers should focus on key test scenarios. Model the bonus round trigger often to check the Expanding Symbol animation works. Test large wins to confirm your balance updates and any manual review processes function. You must also test how your integration works with responsible gambling tools, like sending a timeout signal to verify gameplay stops properly. This is a legal requirement.
The sandbox also includes tools to force specific outcomes, like initiating a bonus or a losing spin. This is very useful for building and testing features like game history logs, bonus buy options, and your own promotional messages. Build a complete automated test suite for these scenarios. Run it frequently, especially before you update your platform or when a new API version is released.