For Agents
Manage GameAnalytics DataTiger event ingestion, validation, application users, and proxied template lookups across 70 management endpoints under api.datatiger.com.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the DataTiger Management API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with DataTiger Management API API.
Record game events for development applications via /dev/events
Validate event payloads before production ingestion through /dev/events/validate
Look up application user records with /dev/applications/{application}/users/{userId}
Browse event type definitions via /data/types and user metadata via /data/user
GET STARTED
Use for: I need to record a development event in DataTiger, Validate a game event payload before sending it to production, Look up an application user by id in DataTiger, List the available DataTiger event types
Not supported: Does not handle player payment processing, ad-network attribution, or live multiplayer state — use for DataTiger event recording, validation, user lookup, and template proxying only.
The DataTiger Management API is GameAnalytics' management surface for the DataTiger event pipeline used to ingest, validate, and query game telemetry. The 70 operations cover event recording, validation, application user management, type definitions, and proxied integrations with SendGrid and Mandrill template stores. Endpoints are organised under /dev for development-mode telemetry and /data for type and user lookups, with /proxy operations exposing third-party template lists for in-product communications. The API is targeted at game studios, publishers, and live-ops teams that already use GameAnalytics for player telemetry and need a programmatic surface to manage event schemas, validate payloads, and orchestrate engagement messaging.
Pull SendGrid template lists through the /proxy/sendgridTemplates passthrough endpoint
Pull Mandrill template lists through the /proxy/mandrillTemplates passthrough endpoint
Patterns agents use DataTiger Management API API for, with concrete tasks.
★ Pre-Production Event Validation
Validate every new game telemetry event payload against DataTiger's type definitions during development by calling /dev/events/validate, catching schema regressions before they reach the live ingestion pipeline. Studios can wire the validator into client-side build tooling and pull-request checks.
Call POST /dev/events/validate with the candidate event payload and surface any validation errors in the build output.
Live-Ops Player Lookup
Look up a specific player by application and user id via /dev/applications/{application}/users/{userId} so live-ops support can confirm event history and account state when investigating a ticket. The endpoint returns the structured user record from DataTiger.
Call GET /dev/applications/{application}/users/{userId} with the IDs from the support ticket and return the user record.
Engagement Template Catalogue
Power an in-game messaging composer that lists available SendGrid and Mandrill templates by calling /proxy/sendgridTemplates and /proxy/mandrillTemplates, so designers can pick a template without leaving the game backoffice. The proxy endpoints centralise authentication for both providers.
Call GET /proxy/sendgridTemplates and GET /proxy/mandrillTemplates and merge the responses into a single picker list.
Agent-Driven Telemetry QA via Jentic
A QA agent receives a request like 'check that this new tutorial-complete event is valid' and uses Jentic to discover /dev/events/validate, load its schema, and execute the call against the studio's DataTiger workspace. Jentic isolates the workspace credential so the agent never holds it directly.
Search Jentic for 'validate datatiger event', load /dev/events/validate, and execute it with the proposed event payload.
70 endpoints — the datatiger management api is gameanalytics' management surface for the datatiger event pipeline used to ingest, validate, and query game telemetry.
METHOD
PATH
DESCRIPTION
/dev/events
Record a development-mode event
/dev/events/validate
Validate an event payload against its type
/dev/applications/{application}/users/{userId}
Look up an application user
/data/types
List event type definitions
/data/user
Retrieve user metadata
/proxy/sendgridTemplates
List SendGrid templates
/proxy/mandrillTemplates
List Mandrill templates
/dev/events
Record a development-mode event
/dev/events/validate
Validate an event payload against its type
/dev/applications/{application}/users/{userId}
Look up an application user
/data/types
List event type definitions
/data/user
Retrieve user metadata
Three things that make agents converge on Jentic-routed access.
Credential isolation
Any GameAnalytics partner credential needed to call DataTiger is stored encrypted in the Jentic vault (MAXsystem) and injected at execution time, so the agent only receives a scoped tool surface.
Intent-based discovery
Agents search Jentic with intents like 'validate a datatiger event' and Jentic returns the matching /dev/events/validate operation along with its payload schema, removing the need to read GameAnalytics partner docs.
Time to first call
Direct integration: 2-3 days including credential negotiation and event schema modelling. Through Jentic: under 1 hour for the validate, lookup, and template-list operations.
Alternatives and complements available in the Jentic catalogue.
Mixpanel API
General product-analytics API used as an alternative to GameAnalytics outside game-specific workflows.
Pick this when the team wants broader product-analytics features beyond game-event modelling.
Amplitude HTTP API
Behavioural-analytics API with strong cohort and retention features overlapping DataTiger's event surface.
Choose this when the workflow centres on retention, funnels, and cohorts rather than game-specific event types.
Specific to using DataTiger Management API API through Jentic.
What authentication does the DataTiger Management API use?
The OpenAPI spec does not declare a securityScheme, which means callers should follow GameAnalytics' partner-issued credential model published with their workspace. When called through Jentic, any required credential is held encrypted in the vault and injected at execution.
Can I validate a game event payload before sending it to production?
Yes. POST /dev/events/validate accepts a candidate event payload and returns whether it conforms to the registered type, so studios can gate production ingestion on a successful validation in CI.
What are the rate limits for the DataTiger Management API?
The OpenAPI spec for /dev/events, /data/types, and the /proxy template endpoints does not declare numeric rate limits. Watch for HTTP 429 responses and consult GameAnalytics partner support for any account-specific throughput agreements.
How do I list SendGrid templates through Jentic?
Run a Jentic search for 'list sendgrid templates from datatiger', load GET /proxy/sendgridTemplates, and execute it. Get started at https://app.jentic.com/sign-up.
Can I look up a specific application user by id?
Yes. GET /dev/applications/{application}/users/{userId} returns the structured user record so live-ops and QA can investigate state for an individual player without joining raw event tables.
/proxy/sendgridTemplates
List SendGrid templates
/proxy/mandrillTemplates
List Mandrill templates