For Agents
Manage Kochava apps, campaigns, and trackers programmatically to control mobile attribution configuration.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Kochava Publisher 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# 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 Kochava Publisher API.
List the apps registered under a Kochava publisher account
Retrieve a single Kochava app to inspect its configuration
Create a Kochava campaign for a specific app
GET STARTED
Use for: List all apps under my Kochava publisher account, Retrieve the Kochava app with id app_123, Create a campaign for a new ad partner on Kochava, Find all trackers attached to a Kochava campaign
Not supported: Does not handle raw event-level attribution data, fraud reports, or SDK install-time integration — use for managing Kochava apps, campaigns, and trackers only.
Jentic publishes the only available OpenAPI specification for Kochava Publisher API, keeping it validated and agent-ready. Kochava is a mobile measurement and attribution platform used by app marketers to track installs, in-app events, and ad performance across networks. The publisher REST API exposes the apps registered to a publisher, the campaigns that drive installs, and the trackers that route attribution data, so an analytics or marketing engineer can manage the Kochava configuration without using the dashboard. It suits app teams that operate at scale and want to script tracker provisioning across many campaigns.
Update a Kochava campaign with new attribution windows or partners
Provision a Kochava tracker that routes installs and events
Inspect a tracker by id to confirm parameters before launch
Patterns agents use Kochava Publisher API for, with concrete tasks.
★ Tracker Provisioning at Scale
Provision Kochava trackers for many ad networks programmatically instead of clicking through the dashboard. The /v1/trackers endpoint lists existing trackers and accepts the configuration needed to create new ones, while /v1/campaigns lets the marketer group those trackers logically. Best for app teams running dozens of campaigns and adding new partner networks every quarter.
For each ad partner in the launch sheet, POST to /v1/trackers under campaign id 42 and store the returned tracker URLs back in the sheet.
Campaign Configuration Audit
Audit existing Kochava campaign configuration before a major launch. /v1/campaigns and /v1/campaigns/{campaignId} together expose the campaign metadata, attribution windows, and partner mapping needed to spot misconfigurations early. Useful for performance marketing leads inheriting an account from a previous agency.
List Kochava campaigns and report any whose attribution window is shorter than 7 days for review.
App Inventory Sync
Keep an internal app inventory in sync with what is registered in Kochava. /v1/apps lists all apps under a publisher account and /v1/apps/{appId} returns the per-app detail. Useful for ops teams that maintain a central registry of mobile apps across regions and need it to match the source of truth in Kochava.
List all Kochava apps via GET /v1/apps and produce a CSV of app id, name, and platform.
Agent-Driven Marketing Operations via Jentic
Have an AI agent answer marketing-ops questions like 'create a tracker for partner X under campaign Y' or 'list active campaigns' by calling Kochava through Jentic. The agent searches Jentic for the matching publisher operation, loads the schema, and executes with the API key kept in the Jentic vault. Removes the dashboard click-through from a fast-moving launch.
Through Jentic, search for 'list Kochava campaigns', load /v1/campaigns, and report the count of active campaigns.
8 endpoints — jentic publishes the only available openapi specification for kochava publisher api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/v1/apps
List apps under the publisher
/v1/apps/{appId}
Retrieve an app
/v1/campaigns
List campaigns
/v1/campaigns/{campaignId}
Retrieve a campaign
/v1/trackers
List trackers
/v1/trackers/{trackerId}
Retrieve a tracker
/v1/apps
List apps under the publisher
/v1/apps/{appId}
Retrieve an app
/v1/campaigns
List campaigns
/v1/campaigns/{campaignId}
Retrieve a campaign
/v1/trackers
List trackers
/v1/trackers/{trackerId}
Three things that make agents converge on Jentic-routed access.
Credential isolation
Kochava Authentication-Key API keys are stored encrypted in the Jentic vault. Agents call /v1/apps, /v1/campaigns, and /v1/trackers through scoped Jentic tools without holding the raw key.
Intent-based discovery
Agents search by intent (e.g., 'list Kochava campaigns', 'create a Kochava tracker') and Jentic returns the matching publisher operation with its schema so the agent picks the right endpoint without reading the docs.
Time to first call
Direct Kochava integration: 1-2 days for header auth wiring and tracker creation flows. Through Jentic: under 1 hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Kochava Publisher API through Jentic.
Why is there no official OpenAPI spec for Kochava Publisher API?
Kochava does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Kochava Publisher API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Kochava Publisher API use?
The Kochava Publisher API uses an API key sent in the Authentication-Key header on every request. Through Jentic, the API key is stored in the Jentic vault and injected at execution time so the agent never holds the raw value.
Can I create a tracker through the Kochava Publisher API?
Yes. /v1/trackers exposes the trackers under the publisher account and supports the writes needed to create a new tracker bound to a campaign. Use it to provision per-partner attribution links without opening the dashboard.
What are the rate limits for the Kochava Publisher API?
Kochava does not publish a public rate limit and the spec does not declare one. Treat list endpoints as moderately throttled and avoid tight polling on /v1/campaigns or /v1/trackers; cache where the data changes infrequently.
How do I list Kochava campaigns from an AI agent through Jentic?
Search Jentic for 'list Kochava campaigns', load GET /v1/campaigns, and execute. Jentic injects the Authentication-Key header from the vault and the agent receives the campaign list with id and metadata.
Does this API include raw event-level attribution data?
No. This publisher API covers configuration of apps, campaigns, and trackers. Raw install and event data are surfaced through Kochava's reporting and attribution feeds, which are separate from this management surface.
Retrieve a tracker