curl --request GET \
--url https://api.spikelabs.com/v1/games \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "game_tictactoe",
"name": "Tic Tac Toe",
"type": "turn_based",
"description": "<string>",
"min_players": 123,
"max_players": 123,
"rules": "<string>"
}
]
}List all games that personalities can play.
curl --request GET \
--url https://api.spikelabs.com/v1/games \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "game_tictactoe",
"name": "Tic Tac Toe",
"type": "turn_based",
"description": "<string>",
"min_players": 123,
"max_players": 123,
"rules": "<string>"
}
]
}API key authentication. Use your secret key (starts with sk_) as a Bearer token.
List of games
Show child attributes