POST Game List POST
Use this endpoint to obtain the list of available games and their information
https://api.hypetech.games/games/activated
Authorizations: accessToken
HTTP: accessToken
Token generated through the Hypetech administrative panel that guarantees access to games.
HTTP Authorization Scheme:
Bearer
Request Body schema: application/json
Production Server Example Payload Content type: application/json { "id": 1, "name": "Wall Street", "slug": "wall-street", "image_url": "" }, { "id": 2, "name": "Aviador ", "slug": "aviador", "image_url": "" }, { "id": 6, "name": "Double", "slug": "double", "image_url": "" }, |
200 List of available games.
RESPONSE SCHEMA: application/json
Field | Type | Description |
---|---|---|
id |
string | Game ID on Hypetech provider |
name |
string | Game name |
slug |
string | Game slug |
image_url |
string | Game cover in 1x1 format and 30% bleed (adaptable to 16:9) |
401 Not authorized
RESPONSE SCHEMA: application/json
Field | Type | Description |
---|---|---|
title |
string | Error title. |
statusCode |
integer | HTTP code for returned status. |
{
"title": "Unauthorized",
"statusCode": 401,
}
404 Route not found.
RESPONSE SCHEMA: application/json
Field | Type | Description |
---|---|---|
title |
string | Error title. |
statusCode |
integer | HTTP code for returned status. |
{
"title": "Not found",
"statusCode": 404,
}
500 Internal server error.
RESPONSE SCHEMA: application/json
Field | Type | Description |
---|---|---|
title |
string | Error title. |
statusCode |
integer | HTTP code for returned status. |
detail |
string | More specific information about the error that occurred. |
{
"title": "Invalid Operation.",
"statusCode": 500,
"detail": "Internal server error."
}