Skip to content
Pathbound DOCS

Introduction

Pathbound is the customer-context layer for AI agents and humans. It connects data from your CRM, website analytics, email, and other tools into a single profile per contact and company — then exposes that context through three surfaces:

  • REST API — Programmatic access to contacts, companies, and events.
  • MCP server — Same data, tool-shaped, for Claude.ai and other Model Context Protocol clients.
  • Tracker — A 4 KB JavaScript snippet that captures behavioral events on your website and links them to contacts.

These docs cover all three.

Every page is also published as machine-readable markdown so an assistant can ground its answers in the current product knowledge:

  • https://pathbound.ai/llms.txt — curated index of every page (titles, descriptions, links).
  • https://pathbound.ai/llms-full.txt — the full docs concatenated into one bundle for one-shot ingestion.
  • https://pathbound.ai/docs/<page>.md — the raw markdown for any single page.

For step-by-step setup with Claude Projects, ChatGPT, or your own agent, see Use with AI tools.

If you want to…Go to
Make your first API callQuickstart
Understand the object modelConcepts
AuthenticateAuthentication
Browse REST endpointsAPI Reference → Contacts
Connect Pathbound to Claude.aiMCP → Overview
Capture website behaviorTracker → Install
Use these docs from Claude, ChatGPT, or your agentUse with AI tools

All API v1 endpoints are served under:

https://api.pathbound.ai/v1

The MCP server lives at https://mcp.pathbound.ai/mcp. The tracker is served from https://tracker.pathbound.ai/tracker.js.

All REST error responses follow a consistent shape:

{
"status": "error",
"error": "A human-readable message",
"details": [],
"timestamp": "2026-04-29T12:00:00.000Z"
}

Validation errors (400) include a details array with per-field messages.

  • REST API: 100 requests per 15-minute window per API key (global). Heavy bursts may also hit per-endpoint limits — these are returned as 429 Too Many Requests.
  • Public form submission: 30/min/IP globally, 100/min per tenant.
  • Tracker /track and /recover-visitor: per-domain and per-IP rate limits, tuned for normal browser traffic.

Pathbound can deliver events to your own URLs. Webhooks are configured in the dashboard, not via the API. See API Reference → Webhooks for payload format and signature verification.

Live status: status.pathbound.ai.