Amba
Platform

Deep Links

Tracked deep links with click analytics and campaign metadata.

Create tracked deep links for marketing campaigns, push notifications, and sharing. Every click is logged with analytics.

MCP tools

ToolDescription
amba_create_tracked_linkCreate a tracked link with slug and destination
amba_get_link_statsGet click analytics for a link

Example

Agent: "Create a tracked link for the summer promo email"

amba_create_tracked_link({
  project_id: "proj_xxx",
  slug: "summer-promo",
  destination_url: "myapp://promo/summer2025",
  metadata: {
    campaign: "summer_2025",
    source: "email",
    medium: "newsletter"
  }
})

This creates a link at https://links.amba.dev/summer-promo that redirects to myapp://promo/summer2025 and tracks every click.

Client API reference

MethodPathDescription
POST/client/deep-links/resolveResolve a deep link slug
POST/client/deep-links/clickRecord a link click

Database tables

TablePurpose
tracked_linksLink definitions with slug, destination, and metadata
link_clicksClick events with timestamp, user, and platform

On this page