Data
Draw a real shuffled hand and evaluate its poker rank API
Draws cards from a freshly shuffled 52-card deck (deckofcardsapi.com, keyless) and, for a 5-card draw, evaluates the standard poker hand rank (royal/straight flush, quads, full house, flush, straight, trips, two-pair, pair, high-card) including the A-2-3-4-5 wheel straight. The MORE over the raw draw API (which only returns card codes): a complete poker hand evaluator. Bounded to 10 cards. Answers 'deal me a poker hand', 'what poker rank are these cards', 'draw N random cards'.
Price$0.01per request
MethodPOST
Route/v1/data/sportsent-poker-deck
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datacardspokerdeckgameshuffleentertainmentrandom
API URL
Integration docshttps://x402.hexl.dev/v1/data/sportsent-poker-deckExample request
{
"count": 5
}Example response
{
"deckId": "8f35qbinpye9",
"drawn": 5,
"remaining": 47,
"cards": [
{
"code": "JD",
"value": "JACK",
"suit": "DIAMONDS",
"image": "https://deckofcardsapi.com/static/img/JD.png"
},
{
"code": "9D",
"value": "9",
"suit": "DIAMONDS",
"image": "https://deckofcardsapi.com/static/img/9D.png"
},
{
"code": "4C",
"value": "4",
"suit": "CLUBS",
"image": "https://deckofcardsapi.com/static/img/4C.png"
},
{
"code": "AC",
"value": "ACE",
"suit": "CLUBS",
"image": "https://deckofcardsapi.com/static/img/AC.png"
},
{
"code": "5C",
"value": "5",
"suit": "CLUBS",
"image": "https://deckofcardsapi.com/static/img/5C.png"
}
],
"pokerEvaluation": {
"rank": "high-card",
"rankScore": 1,
"description": "high card"
}
}Input schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Cards to draw (default 5; poker rank computed only for 5)."
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}