The playground

Try any of 1042 endpoints — live.

Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.

Playground demo key · api.reefapi.com
post/steam-games/v1/reviews1 credit

user reviews + query_summary; review_type/day_range/trend (day|week|month|year)/sort=funny; redact_pii drops author identity

Working example
Parameters

Steam application id (the number in a store URL, e.g. 730 = CS2).

Review language (Steam name, or 'all'). Default all.

How many reviews to return (1-100). Clamped to range. (1–100)

Ordering. recent/updated/all are Steam-native; toprated/top/helpful/best are remapped to 'all'.

Recommendation polarity filter.

Trending window in days (used with filter=all). Set directly, or via the `trend` shortcut.

Shortcut that sets day_range + filter=all for a trending window.

Optional client-side re-sort. Only funny/funniest reorder; otherwise Steam's native order is kept.

Restrict to reviewers by purchase source.

Pagination cursor — pass the previous response's `cursor` for the next page.

Drop author identity (steamid/profile/name/avatar/playtime) from each review.

request preview
curl -X POST https://api.reefapi.com/steam-games/v1/reviews \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"appid":"730","num_per_page":"5"}'

Hit Send to run this endpoint live.