9 endpoints for free-to-play game discovery from FreeToGame (1,000+ titles), digital game deal tracking from CheapShark (Steam, GOG, Humble Bundle), and a Deck of Cards simulator for card game apps. Filter free games by genre and platform, find the best game deals, or simulate card draws and shuffles.
Base URL: https://nordapi.ee/api/v1
GET /games/free
Browse 1,000+ free-to-play games with filters for platform and genre. Returns title, thumbnail, description, genre, platform, publisher, developer, and release date.
platform
optional
category
optional
sort-by
optional
curl "https://nordapi.ee/api/v1/games/free?platform=pc&category=shooter&sort-by=popularity"
GET /games/free/:id
Get detailed information about a specific free-to-play game including screenshots, system requirements, and description.
curl https://nordapi.ee/api/v1/games/free/452
GET /games/deals
Find the best digital game deals across Steam, GOG, Humble Bundle, and more stores. Filter by price, store, and sort by savings or Metacritic score.
title
optional
upperPrice
optional
lowerPrice
optional
storeID
optional
sortBy
optional
pageSize
optional
default: 10
curl "https://nordapi.ee/api/v1/games/deals?upperPrice=15&sortBy=Metacritic"
GET /games/deal/:id
Get full details about a specific game deal including price history and store info.
curl https://nordapi.ee/api/v1/games/deal/example-deal-id
GET /games/stores
List all digital game stores tracked by the deals API (Steam, GOG, Humble Bundle, etc.).
curl https://nordapi.ee/api/v1/games/stores
GET /cards/new
Create a new shuffled deck of playing cards. Returns a deck ID for use with draw and shuffle endpoints.
deck_count
optional
default: 1
curl https://nordapi.ee/api/v1/cards/new
GET /cards/draw/:deck_id
Draw cards from a previously created deck. Returns card images, values, and suits.
count
optional
default: 1
curl "https://nordapi.ee/api/v1/cards/draw/abc123?count=5"
GET /cards/shuffle/:deck_id
Reshuffle a previously created deck, returning all drawn cards to the deck.
curl https://nordapi.ee/api/v1/cards/shuffle/abc123
GET /cards/quickdraw
Create a new deck and immediately draw cards in one request. Perfect for quick card game prototyping.
count
optional
default: 5
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"