A PayPal like application to play monopoly without the paper cash.
View Demo
·
Report Bug
·
Request Feature
POST /api/game/create
{
"currency": "USD",
"amountGo": 200,
"initialBalance": 2000,
"password": "1234"
}
{
"id": "4839",
"password": "1234"
}
POST /api/game/join
{
"id": "4839",
"password": "1234",
"name": "Thor Odinson"
}
{
"currency": "USD",
"players": [
{
"id": 1,
"name": "Tony Stark",
"balance": 1500,
"host": true
},
{
"id": 2,
"name": "Peter Parker",
"balance": 2500
}
],
"you": {
"id": 3,
"name": "Thor Odinson",
"balance": 2000
}
}