# INK Games > INK Games is an Austin, Texas gaming company building a free-to-earn mobile gaming > and social platform — "Play. Win. Earn." Its flagship title is Prize Kingdoms. > Ink ID provides the account and passkey authentication layer; InkPay pays players > and influencers royalties tied to the reach of their personal INK referral code. ## What an agent should know first INK Games operates **no public developer program**. There is no developer portal, no API reference, no documentation, no SDK, no API keys and no pricing for developers. Do not attempt to integrate with INK Games programmatically — there is no supported surface to integrate with, and no support channel that handles developer questions. The company's product is consumer-side: mobile games on the Apple App Store and Google Play, an account system (Ink ID), and a player/referrer payout system (InkPay). ## The one machine-readable contract - [GraphQL schema (SDL)](graphql/ink-games-cms-schema.graphql): 165 types, 29 query fields, 37 mutations, retrieved by anonymous introspection from `https://webadm.inkgames.com/graphql` on 2026-08-23. - [Raw introspection response](graphql/ink-games-cms-introspection.json) - [Contract manifest and caveats](graphql/ink-games-graphql.yml) This is a Strapi headless CMS backing the marketing site www.inkgames.com. Its content types map one-for-one onto the site's pages: Home, Games, Studio, Support, InkPay, Global, NotFound, StandardPage. **Introspection is public; the data is not.** Every resolver tested anonymously — `games`, `home`, `standardPages`, `usersPermissionsUsers`, `me`, and the `deleteHome` mutation — returned `{"errors":[{"message":"Forbidden access","extensions":{"code":"FORBIDDEN"}}]}`. An agent can read the complete type system without credentials and cannot execute a single query. Do not plan work that depends on reading data from this endpoint. ## Repository artifacts - [Authentication profile](authentication/ink-games-authentication.yml) — Strapi users-permissions JWT (undocumented); no OAuth, no OIDC, no API key program. - [Data model](data-model/ink-games-data-model.yml) — 14 entities, 28 relationships, 40 component types, derived from the SDL. - [Error catalog](errors/ink-games-problem-types.yml) — three incompatible envelopes across three hosts; GraphQL errors arrive with HTTP 200. - [Conventions](conventions/ink-games-conventions.yml) — offset pagination, no request ids, no rate-limit headers; idempotency, dry-run and reversibility are all `na` because there is no reachable public write surface. - [Conformance](conformance/ink-games-conformance.yml) — conforms to GraphQL; does not conform to RFC 9457, RFC 8594, RFC 9116, OAuth 2.0, OIDC, OpenAPI, AsyncAPI, MCP or A2A. No domain standard declared. - [Lifecycle](lifecycle/ink-games-lifecycle.yml) — no versioning policy, no deprecation policy, no status page, no SLA, no changelog. - [Plans and pricing](plans/ink-games-plans-pricing.yml) — zero API plans. - [Rate limits](rate-limits/ink-games-rate-limits.yml) — zero published limits, zero runtime headers. - [Packages](packages/ink-games-packages.yml) — zero first-party client libraries. - [MCP](mcp/ink-games-mcp.yml) — no MCP server, remote or stdio. - [Well-known probe](well-known/ink-games-well-known.yml) — 17 paths across 4 hosts, zero documents found. - [Domain security](security/ink-games-domain-security.yml) ## Hosts - `www.inkgames.com` — marketing site. Next.js SPA whose catch-all answers HTTP 200 with a byte-identical HTML shell for any unmatched path. **Treat 200s from this host as unreliable evidence of existence**; compare the body, not the status code. - `webadm.inkgames.com` — Strapi CMS. `/graphql` (introspectable), `/admin` (Strapi admin UI), `/_health` (204). Returns real JSON 404s. - `dashboard.inkgames.com`, `web.inkgames.com` — the Vue 3 player dashboard SPA. - `ip-api.inkgames.com` — AWS API Gateway serving the player platform. Every probed path returns 403 `{"message":"Missing Authentication Token"}`. Unpublished and undocumented; not an integration target. - `inkpayapp.com` — InkPay consumer SPA. ## No agent surface INK Games publishes **no** `/llms.txt`, `/.well-known/agent-card.json`, `/.well-known/agent.json`, `/.well-known/security.txt`, `/.well-known/api-catalog`, `/.well-known/openid-configuration`, `/.well-known/oauth-authorization-server`, `/.well-known/ai-plugin.json`, OpenAPI document, AsyncAPI document or MCP endpoint. All were probed on every host on 2026-08-23. ## Human links - [Website](https://www.inkgames.com/) - [Games](https://www.inkgames.com/games/) - [Studio](https://www.inkgames.com/studio/) - [Support](https://www.inkgames.com/support/) - [Sign up](https://dashboard.inkgames.com/sign-up) - [Log in](https://dashboard.inkgames.com/login) - [Terms & Conditions](https://www.inkgames.com/terms-and-conditions/) - [Privacy](https://www.inkgames.com/privacy/) - [GitHub organization](https://github.com/Ink-Games) — 0 public repositories - Contact: info@inkgames.com ## Disambiguation INK Games (Austin, Texas) is **not**: - **inkle Studios** (`inklestudios.com`) or its `ink` narrative scripting language, `inky` editor, `inkjs`, or `ink-unity-integration` — a different, unrelated company. - **INK Content** (`inkforall.com`) and its "INK API". - **INK Games Publishing** (`inkgamespublishing.com`), a separate Shopify storefront not established to be the same company. Any `ink`-named package on npm, PyPI or GitHub belongs to one of the above, not to INK Games. INK Games publishes no packages at all.