Agent tip: fetch the .md version of this page - same data, fewer tokens. Checking many players? Batch up to 100 ids: /batch/{id1,...,id100}.md

SteamGPT - Steam identity and gaming context API

For humans, applications and AI agents. Free, no API key, no registration. Private by design: no accounts, no cookies, no tracking.

Independent service - not affiliated with Valve Corporation or Steam.

Steam → normalized → AI-ready

HTMLfor humans
Markdown (.md)for LLMs
Plain text (.ai)for models that just need the facts
JSON (.json)for applications
OpenAPI + MCPfor tools and agent runtimes

Tools: SteamID converter · Steam ban check · profile lookup

Listed on: official MCP Registry · Glama (verified) · Context7 · llms-txt.io · public-apis · npm

Endpoints

Every {id} accepts any SteamID format (steamid64, STEAM_1:0:x, [U:1:x]), a steamcommunity.com link or a vanity name.

/summary/{id}[.md|.json|.ai]Everything at once: Steam + bans + FACEIT + public friend graph (~0.5-1.5k tokens)
/profile/{id}[.md|.json|.ai]Steam summary only (~200 tokens, .ai ~80)
/friends/{id}[.md|.json|.ai]Public Steam friend graph (platform snapshot, can be partial); ?detail=short|medium|full picks token cost (short: ~5 tokens/friend)
/faceit/{id}[.md|.json|.ai]FACEIT player object and bans (~100-200 tokens)
/batch/{id1,id2,...}[.md|.json|.ai]Up to 100 profiles in one request (comma-separated ids, any SteamID format) - the cheap way to check many players
/bans/{id}[.md|.json|.ai]Steam bans: VAC, game, community, economy
/compare/{id1}/{id2}[.md|.json|.ai]Two players side by side + shared friends
/converter/{any-format}[.md|.json|.ai]SteamID converter: every format of one account at once (dec + hex, STEAM_1, legacy STEAM_0, [U:1:x], account id, steam:hex, profile URL)
/identity/{id}[.md|.json|.ai]Identifier resolver THROUGH Steam: the conversions above plus vanity resolution

Format selection

Use the .md / .json / .ai suffix (.ai = deterministic plain text for models), or the Accept header (text/markdown, application/json, text/html). Requests without a browser Accept header default to markdown.

Example

curl https://steamgpt.net/summary/76561197960287930.md

Use with AI tools

MCP (this project)claude mcp add --transport http steamgpt https://steamgpt.net/mcp - 9 read-only tools for any MCP client (Claude, Cursor, ChatGPT, VS Code). No auth.
MCP (all projects)claude mcp add --scope user --transport http steamgpt https://steamgpt.net/mcp - same server globally, for every folder and project. More setups: /ai.
ChatGPTCreate a Custom GPT, add an Action and import the schema from https://steamgpt.net/openapi.json. No auth.
ClaudePaste https://steamgpt.net/llms.txt into the chat or let Claude fetch /docs.md - every endpoint works with plain GET.
Cursor / IDE agentsAdd https://steamgpt.net/llms-full.txt to your project docs; use /types.d.ts for typed clients.
OpenAI Agents / tool useGenerate a typed tool from /openapi.json; responses match /types.d.ts.

For agent developers

Machine discovery: llms.txt, docs.md, openapi.json. Soft fair-use limit: 120 requests/min per IP.

FAQ

How do I get Steam profile data without an API key?

Request https://steamgpt.net/summary/{any-steamid}.md - no key, no registration. The response includes the Steam summary, Steam ban status, FACEIT stats and the platform snapshot of the public Steam friend graph, in markdown, JSON or plain text.

How do I convert a SteamID64 to SteamID or SteamID3?

Every profile response includes all formats: Steam64 ID, SteamID (STEAM_1:1:x) and SteamID3 [U:1:x] - see the ids block.

Can AI agents and GPT models use this API?

Yes, it is built for them: markdown output saves tokens, llms.txt and openapi.json enable automatic discovery, and there is no authentication.

How do I find a Steam profile by vanity name or profile link?

Pass the vanity name, the full steamcommunity.com link or any SteamID format (STEAM_1:0:x, [U:1:x]) instead of the steamid64 - resolution goes through Steam automatically.

Is SteamGPT private? What data does it collect about me?

None. No accounts, no API keys, no cookies, no analytics, no fingerprinting. The only thing the service touches is your IP - inside a per-minute rate-limit counter that auto-expires in about a minute and is never stored or profiled. Everything the API serves is public Steam and FACEIT data.

Which endpoint should I use to save tokens?

/identity/{id}.md and /bans/{id}.md are the cheapest, /profile/{id}.md returns the Steam summary, /summary/{id}.md returns everything at once and can be trimmed with ?include= and ?friends_limit=.