Build integrations with real-time game server data. Manage players, monitor matches, and automate guild operations through a powerful GraphQL API.
# Authenticate and query live game state in seconds
$ curl -X POST https://api.dev.bifrostgaming.com/v1/oauth/token \
-d "grant_type=client_credentials" \
-d "client_id=YOUR_ID" \
-d "client_secret=YOUR_SECRET"
{
"access_token": "eyJhbGciOiJSUzI1NiIs...",
"token_type": "Bearer",
"expires_in": 3600
} Query live game state, player lists, scores, and match information directly from your game servers with sub-second latency.
Warn, kick, ban, and manage players programmatically. Search player history, manage VIPs, and track mod actions through the API.
A single endpoint, flexible queries, and typed responses. Request exactly the data you need with code examples in cURL, Python, and .NET.
Every query and mutation fully documented with input fields, example responses, rate limits, and code samples in three languages.
Base URL
https://api.dev.bifrostgaming.com/v1/graphql Protocol
GraphQL over HTTPS (POST)
Authentication
OAuth 2.0 Client Credentials
Token Lifetime
1 hour (3600 seconds)