Skip to main content
By the end of this guide you’ll have made your first authenticated API call, confirmed your account and plan details, browsed the game catalog, and pulled a live demand leaderboard — all from your terminal. The only tool you need is curl (and optionally jq for pretty-printing JSON).

Prerequisites

You need an 8bitedge API key to follow along. Keys are provisioned per organization — contact the 8bitedge team to get set up. Your key looks like bit_ab12cd34ef56.<secret> and the full plaintext value is shown only once at provisioning time, so store it somewhere safe immediately.
1

Store your API key

Export your key and the base URL into shell variables so every subsequent command stays readable:
Never hard-code your API key in scripts you commit to version control. Environment variables or a secrets manager are the right home for it.
2

Verify your key

The GET /api/v1/me endpoint returns your organization, plan limits, key metadata, and current usage. It requires a valid key but no specific scope, making it the perfect health check.
A successful response looks like this:
Check the scopes array to confirm which endpoints your key can access. If you see insufficient_scope errors later, this is the first place to look.
3

Browse the game catalog

The GET /api/v1/games/titles endpoint returns a paginated list of every enabled game in the catalog. This endpoint requires the games.read scope.
The response is paginated. By default you get 25 results per page (capped by your plan’s max_page_size):
Follow links.next to walk through subsequent pages, or fetch a specific game by id to get full pricing details:
Pass ?limit=50 to fetch up to your plan’s max_page_size per request. Always read meta.pagination.per_page in the response — the server silently caps oversized limit values to your plan maximum.
4

Check the demand leaderboard

The demand leaderboard is where 8bitedge’s market intelligence comes to life. GET /api/v1/demand-intent/games ranks every game by buyer intent over a rolling time window. This endpoint requires the demand-intent.read scope.
Each row in the leaderboard tells you exactly how much buyer interest a game is generating and whether that interest is accelerating:
Key fields to understand:You can sort by watches or momentum instead of the default intent sort:
5

Read rate-limit headers

Every response from the 8bitedge API includes rate-limit headers so your integration can stay within plan limits without guessing. Use curl -D - to dump response headers to stdout:
Look for these headers in the output:
If you exhaust the window, you’ll receive a 429 with a Retry-After header telling you exactly how many seconds to wait before retrying:

A note on scopes

Your API key’s scopes array controls which endpoints you can call. Here’s a quick reference for the endpoints in this guide: If your key is missing a required scope, the API returns 403 insufficient_scope. Check your scopes with GET /api/v1/me and contact the 8bitedge team to have additional scopes added to your key.

Next steps

Authentication

Deep-dive into bearer keys, scopes, and how to handle every auth error code.

Plans & Limits

Understand rate limits, monthly quotas, page size caps, and what happens when you exceed them.

Demand Signals Guide

Learn how to use momentum scores, condition breakdowns, and search analytics to drive sourcing decisions.

Catalog Lookups Guide

Efficiently query the games and consoles catalog — by id, slug, title, or console.