For repeatable workflows, use Agent Skills instead. Skills auto-activate and carry the judgment for a whole task — period reviews, tracking-link retrieval, conversion scrubbing, and more — without copy-pasting prompts. The starter prompts below are best for ad-hoc, exploratory queries; for end-to-end tool traces, see Agentic Examples.
Tips for better results
Tips for better results
- Be specific about date ranges. The agent performs better with explicit dates (
2026-04-01to2026-04-30) than relative terms like “last month.” - Ask for one thing at a time in complex investigations. Multi-step workflows are more reliable when each step is confirmed before the next.
- Use IDs when you have them. Filtering by
offer_idoraffiliate_idis faster and more accurate than filtering by name. - Specify currency and timezone if your network has non-USD defaults or you’re comparing across regions.
- Paginate explicitly for large datasets. Ask the agent to “get the next page” or set
page_sizein your prompt when working through long lists.
Start every new session with
get_account_info or ask the agent to call it automatically. This confirms your default currency and timezone, which affects how reports and timestamps are interpreted.Starter prompts
Confirm your session context“Call get_account_info and summarize my network name, default timezone, default currency, and whether I have limited affiliate scope.”Performance snapshot
“Give me a performance summary for yesterday — total clicks, conversions, revenue, payout, and profit — in my network’s default timezone.”Top offers this month
“What are my top 10 offers by revenue this month? Show name, clicks, conversions, CVR, revenue, and profit, sorted by revenue descending.”Compare this week to last week
“Compare this week’s performance to last week across clicks, conversions, revenue, and profit. What changed significantly?”Biggest movers by offer
“Which offers had the biggest change in EPC this week vs last week? Rank by the EPC delta and show each offer’s current vs prior value.”Diagnose a click or conversion
“Look up transaction ID [TRANSACTION_ID] — offer, affiliate, timestamp, unique flag, the error code and its meaning, and whether it converted.” (or: “Look up conversion [CONVERSION_ID] — offer, affiliate, advertiser, payout, status, error code, click timestamp, and sub/adv parameters.”)Why are clicks invalid / conversions rejected
“Run a performance report for affiliate [AFFILIATE_ID] between [FROM] and [TO] with dimensions=click_error_code (or conversion_error_code). Show each reason and its count, sorted descending. Ignore error code 0.”Unpaid invoices for an affiliate
“List all invoices for affiliate [AFFILIATE_ID] with status unpaid. Show billed amount, the period, and whether it’s payable.”
The invoice entity type requires an
affiliate_id filter — a network-wide invoice list is not supported. To find affiliates with outstanding invoices, run list_affiliates first, then query invoices per affiliate.