Bifrost Bifrost
POSThttps://api.dev.bifrostgaming.com/v1/graphql

guildGetRawLogs

v1

Get raw, unprocessed game logs from a server. Returns all log entries including connections, disconnections, and system events.

Operation Type

Query

Rate Limit: 1 request per 15 seconds per server

Important usage notes

  • Rate limited to 1 request per 15 seconds per server. Includes connection/disconnection events not present in processed logs.

Input Fields

FieldTypeRequiredDescription
serverIdID!RequiredUnique server identifier
gameTypeStringOptionalGame type filter (e.g., "HLL")

Code Examples

curl -X POST https://api.dev.bifrostgaming.com/v1/graphql \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "query GetRawLogs($serverId: ID!, $gameType: String) { guildGetRawLogs(serverId: $serverId, gameType: $gameType) { success totalCount serverId matchId logs { action timestamp data } error timestamp } }",
    "variables": {
      "serverId": "YOUR_SERVER_ID",
      "gameType": "HLL"
    }
  }'

Postman Collection

Download a ready-to-use Postman collection for this endpoint. Import it into Postman to start testing immediately.

How to import into Postman
  1. Open Postman and click Import (top-left)
  2. Drag and drop the downloaded .json file, or click Upload Files and select it
  3. Click Import to confirm
  4. The collection appears in your sidebar — expand it and select the request
  5. In the Body tab, update the placeholder values (your-partner-id, etc.) with your actual credentials
  6. Click Send

The collection uses Postman's GraphQL body type, which provides syntax highlighting and variable editing. Make sure your Postman version is 7.2+ for GraphQL support.

Success Response200

{
  "data": {
    "guildGetRawLogs": {
      "logs": [
        "KILL: SoldierOne(Allies/76561198012345678) -> EnemyPlayer(Axis/76561198087654321) with M1 GARAND",
        "CHAT[Team][SoldierOne(76561198012345678)]: Great push guys",
        "DISCONNECTED: LeavingPlayer (76561198055443322)"
      ]
    }
  }
}

Error Responses

Response Fields

FieldTypeRequiredDescription
successBooleanOptionalWhether the request succeeded
totalCountIntOptionalTotal number of log entries returned
serverIdStringOptionalServer identifier
matchIdStringOptionalCurrent match ID (null if unavailable)
logsArrayOptionalArray of raw log entries with action, timestamp, and data fields
errorStringOptionalError message if rate limited or failed
timestampStringOptionalServer timestamp of the response

In partnership with

Brilliant game servers for communities large and small.

Get yours today!

Shrapnelworks Logo

A Shrapnelworks product