โ† All API Products

Gaming API

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.

FREE 9 endpoints 100 req/hour
Base URL: https://nordapi.ee/api/v1

Free-to-Play Games

GET /games/free
Details โ†’

Browse 1,000+ free-to-play games with filters for platform and genre. Returns title, thumbnail, description, genre, platform, publisher, developer, and release date.

Parameters
platform optional
Filter: pc, browser, or all
category optional
Genre: mmorpg, shooter, strategy, moba, racing, sports, battle-royale, etc.
sort-by optional
Sort: release-date, popularity, alphabetical, relevance
curl "https://nordapi.ee/api/v1/games/free?platform=pc&category=shooter&sort-by=popularity"

Free Game Details

GET /games/free/:id
Details โ†’

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

Game Deals

GET /games/deals
Details โ†’

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.

Parameters
title optional
Search by game title
upperPrice optional
Maximum price in USD
lowerPrice optional
Minimum price in USD
storeID optional
Filter by store ID
sortBy optional
Sort: Deal Rating, Title, Savings, Price, Metacritic, Reviews, Release, Store, recent
pageSize optional default: 10
Results per page (max 60)
curl "https://nordapi.ee/api/v1/games/deals?upperPrice=15&sortBy=Metacritic"

Deal Details

GET /games/deal/:id
Details โ†’

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

Game Stores

GET /games/stores
Details โ†’

List all digital game stores tracked by the deals API (Steam, GOG, Humble Bundle, etc.).

curl https://nordapi.ee/api/v1/games/stores

New Card Deck

GET /cards/new
Details โ†’

Create a new shuffled deck of playing cards. Returns a deck ID for use with draw and shuffle endpoints.

Parameters
deck_count optional default: 1
Number of decks to combine
curl https://nordapi.ee/api/v1/cards/new

Draw Cards

GET /cards/draw/:deck_id
Details โ†’

Draw cards from a previously created deck. Returns card images, values, and suits.

Parameters
count optional default: 1
Number of cards to draw
curl "https://nordapi.ee/api/v1/cards/draw/abc123?count=5"

Shuffle Deck

GET /cards/shuffle/:deck_id
Details โ†’

Reshuffle a previously created deck, returning all drawn cards to the deck.

curl https://nordapi.ee/api/v1/cards/shuffle/abc123

Quick Draw

GET /cards/quickdraw
Details โ†’

Create a new deck and immediately draw cards in one request. Perfect for quick card game prototyping.

Parameters
count optional default: 5
Number of cards to draw
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"