Post
Topic
Board Gambling
Re: Primedice.com | Creators of Dicing 🎲 | 22 Billion Bets | 112+ BTC Jackpot!
by
xandry
on 14/09/2018, 05:50:15 UTC
If you made bets on new platform then you can easily see your last bets through API https://api.primedice.com/graphql and get seed from it.
Just paste this code and run it:
Code:
query userid{user(name: "YOUR_USERNAME_GOES_HERE"){betList{iid}}}
Personally I have received such answer:
Code:
{
  "data": {
    "user": {
      "betList": [
        {
          "iid": "23782704876"
        }
      ]
    }
  }
}

What does all this mean?