For Agents
Browse free-to-play games and free MMOs by platform, genre, and tag, and fetch full game details for recommendation or aggregation flows.
Get started with FreeToGame API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list free to play games"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with FreeToGame API API.
List free-to-play and free MMO games across PC and browser platforms
Filter the catalogue by platform, category, and sort order
Retrieve a single game's full metadata including developer, publisher, and screenshots
Apply multi-tag filters to surface games that match several genre criteria
GET STARTED
Use for: Find all free-to-play MMORPGs released this year, Get the full details for a specific FreeToGame title, List browser-based shooter games sorted by popularity, Search for free strategy games available on PC
Not supported: Does not handle game purchases, account linking, or paid title catalogues — use for browsing free-to-play and free MMO metadata only.
Jentic publishes the only available OpenAPI document for FreeToGame API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for FreeToGame API, keeping it validated and agent-ready. FreeToGame exposes a catalogue of free-to-play PC and browser games and free MMOs, including titles, genres, descriptions, developers, publishers, release dates, and official URLs. The API is open and unauthenticated, returning JSON suitable for game directories, recommendation tools, and content aggregators. Filtering by platform, category, and sort order lets agents narrow the catalogue without server-side state.
Sort game lists by release date, popularity, alphabetical order, or relevance
Patterns agents use FreeToGame API API for, with concrete tasks.
★ Free Game Discovery Feed
Power a discovery feed of free-to-play titles by listing the FreeToGame catalogue with platform and category filters, then refreshing on a schedule to surface new releases. The /games endpoint returns lightweight summaries suitable for grid views, while /game returns full detail pages on demand. Integration takes under an hour because no authentication is required.
Call GET /games with platform=pc and category=mmorpg, sort by release-date, and return the top 20 titles with thumbnail and short description
Genre-Tagged Game Recommendations
Build a recommendation widget that uses the /filter endpoint with multiple tags such as shooter plus mmo to surface games matching several player preferences. Results return as a single JSON array which can be ranked client-side by release date or popularity. This is well suited to chat assistants suggesting games to a player.
Call GET /filter with tag=mmorpg.shooter and platform=pc and return the five most recently released matches
Game Detail Lookup
When a user picks a title in a chat or storefront, fetch its full record from /game by ID to show the long description, developer, publisher, release date, system requirements, and screenshots. The endpoint returns one self-contained payload, removing the need for additional joins.
Call GET /game?id=452 and extract the title, developer, minimum_system_requirements, and screenshots fields
Agent-Driven Game Concierge
An AI agent fields prompts like find me a free space MMO and translates them to /filter or /games queries, returns a shortlist with thumbnails, then deep-links to the official game page. Because there is no authentication, the agent can call the API directly through Jentic with no credential setup.
Search Jentic for 'list free to play games', load the /games schema, execute with category=mmorpg and return three picks
3 endpoints — jentic publishes the only available openapi specification for freetogame api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/games
List free-to-play games filtered by platform and category
/game
Get full details for a single game by ID
/filter
Filter games by multiple tags, platform, and sort order
/games
List free-to-play games filtered by platform and category
/game
Get full details for a single game by ID
/filter
Filter games by multiple tags, platform, and sort order
Three things that make agents converge on Jentic-routed access.
Credential isolation
FreeToGame requires no credentials, so there is nothing to vault. Jentic still routes the request through MAXsystem so the agent's network identity stays isolated from the call.
Intent-based discovery
Agents search Jentic for intents like 'list free to play games' and Jentic returns the matching FreeToGame operation with its parameter schema, so the agent can filter by platform, category, and tag without scraping docs.
Time to first call
Direct FreeToGame integration: under a day for HTTP wiring and tag handling. Through Jentic: minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
RAWG Video Games Database
Larger video game database covering paid and free titles across all platforms
Choose RAWG when an agent needs full platform coverage, ratings, and reviews rather than only free-to-play titles
IGDB
Comprehensive game metadata API spanning the entire industry
Choose IGDB when the agent needs deep franchise, company, and release-history relationships rather than a free-to-play catalogue
Twitch
Live stream and creator data that pairs well with a free-game directory
Use Twitch alongside FreeToGame to show live streams of the recommended free titles
Specific to using FreeToGame API API through Jentic.
Why is there no official OpenAPI spec for FreeToGame API?
FreeToGame does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call FreeToGame API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the FreeToGame API use?
FreeToGame requires no authentication or API key — endpoints are open over HTTPS at https://www.freetogame.com/api. Through Jentic the call still runs inside MAXsystem, so any optional headers or proxy settings stay scoped to the agent execution rather than being baked into agent code.
Can I filter FreeToGame results by multiple genre tags?
Yes. The GET /filter endpoint accepts a dot-separated tag parameter such as tag=mmorpg.shooter and combines it with platform and sort-by query parameters to return a single JSON array of matching games.
What are the rate limits for the FreeToGame API?
FreeToGame does not document a hard rate limit but asks integrators to cache results and avoid hammering the endpoints. A polite client cadence of a few requests per second is appropriate; cache /games responses for minutes rather than seconds.
How do I fetch a single game's full details through Jentic?
Search Jentic for 'get free to play game details', load the GET /game schema, then execute with the id query parameter. The response includes the long description, developer, publisher, release date, screenshots, and system requirements in one payload.
Is the FreeToGame API free to use commercially?
FreeToGame is free for personal and commercial use with attribution to FreeToGame.com. There are no paid tiers exposed through the API and no billing endpoints, so cost-tracking integrations are unnecessary.