For developers & AI agents

Build on 10x GTM.

Every one of our 112 evidence-led go-to-market tool reviews is available as structured data. A REST API, an MCP server, a bulk corpus, and in-page WebMCP tools. All read-only, all public, no API key.

Quick links

REST API

Three read-only JSON endpoints. Versioned under /api/v1; the unversioned /api/* paths are permanent aliases. Responses carry RateLimit-* headers.

List / search tools

GET
https://10xgtm.ai/api/v1/tools?q=crm&category=crm-lifecycle-customer-marketing&limit=5

One tool review

GET
https://10xgtm.ai/api/v1/tools/clarify

All categories

GET
https://10xgtm.ai/api/v1/categories?sort=count

Many tools at once (batch)

POST
https://10xgtm.ai/api/v1/tools/batch  { "slugs": ["clarify", "attio", "clay"] }

Try it

curl
curl -s "https://10xgtm.ai/api/v1/tools?q=enrichment&limit=3"

MCP server

For agents that speak Model Context Protocol. Streamable HTTP, read-only, no key. Full setup on the MCP page.

Claude Code
claude mcp add --transport http 10xgtm https://10xgtm.ai/api/mcp

Tools: search_tools, get_tool_review, compare_tools, list_categories. Discovery card at /.well-known/mcp/server-card.json.

WebMCP

When an agent operates this site directly in a browser, the same read tools are registered in-page via navigator.modelContext / document.modelContext. No setup needed, they appear automatically.

Notes

  • No auth. Everything here is public and keyless. The data is review content, not user data.
  • Fair use. Endpoints are rate limited per IP. For bulk work, fetch /mcp-tools.json once rather than looping the API.
  • Versioning & deprecation policy. Endpoints are versioned by URL path. Breaking changes ship under a new prefix (/api/v2); /api/v1 stays stable. Any endpoint slated for removal carries HTTP Deprecation and Sunset headers for at least 90 days first.
  • Freshness. The corpus rebuilds with the site, so data stays current.