Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/playfab-account-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: PlayFab Client Account API
description: 'PlayFab is Microsoft Azure''s backend-as-a-service for live games. The
Client API is the player-facing REST surface used by game clients for
login, account linking, virtual currency, inventory, friends,
leaderboards, statistics, player data, cloud script execution,
multiplayer session lookup, push registration, and analytics events.
Each PlayFab title is scoped to its own subdomain at
`https://{titleId}.playfabapi.com`, where `{titleId}` is the unique
title identifier from the PlayFab Game Manager.
Login calls (`LoginWith*`, `RegisterPlayFabUser`) require no
authentication header and return a `SessionTicket`. Subsequent calls
pass the session ticket in the `X-Authorization` header. Entity-model
calls additionally use the entity token in the `X-EntityToken` header.
'
version: 1.0.0
contact:
name: API Evangelist
email: kin@apievangelist.com
license:
name: Proprietary
servers:
- url: https://{titleId}.playfabapi.com
description: PlayFab title-scoped API server
variables:
titleId:
default: titleId
description: Unique PlayFab title identifier.
security:
- sessionTicket: []
tags:
- name: Account
description: PlayFab account metadata.
paths:
/Client/GetTitlePublicKey:
post:
tags:
- Account
summary: Returns the title's RSA public key
security: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- TitleId
- TitleSharedSecret
properties:
TitleId:
type: string
TitleSharedSecret:
type: string
responses:
'200':
description: Public key returned.
/Client/GetPhotonAuthenticationToken:
post:
tags:
- Account
summary: Get a Photon custom authentication token
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- PhotonApplicationId
properties:
PhotonApplicationId:
type: string
responses:
'200':
description: Token returned.
/Client/SetPlayerSecret:
post:
tags:
- Account
summary: Set the player's secret used to sign API requests
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
PlayerSecret:
type: string
EncryptedRequest:
type: string
responses:
'200':
description: Player secret stored.
components:
securitySchemes:
sessionTicket:
type: apiKey
in: header
name: X-Authorization
description: 'Session ticket returned by a successful `LoginWith*` call. Required
for all Client API operations other than login/registration.
'
entityToken:
type: apiKey
in: header
name: X-EntityToken
description: Entity token used for Entity-model API calls.