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 — OpenAPI 3.1 spec · base
https://10xgtm.ai/api/v1 - MCP server — connection guide · endpoint
https://10xgtm.ai/api/mcp - Bulk corpus — /mcp-tools.json (all tools + categories in one file)
- Agent guide — /agents.md · /llms.txt · ARD
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
https://10xgtm.ai/api/v1/tools?q=crm&category=crm-lifecycle-customer-marketing&limit=5One tool review
https://10xgtm.ai/api/v1/tools/clarifyAll categories
https://10xgtm.ai/api/v1/categories?sort=countMany tools at once (batch)
https://10xgtm.ai/api/v1/tools/batch { "slugs": ["clarify", "attio", "clay"] }Try it
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 mcp add --transport http 10xgtm https://10xgtm.ai/api/mcpTools: 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/v1stays stable. Any endpoint slated for removal carries HTTPDeprecationandSunsetheaders for at least 90 days first. - Freshness. The corpus rebuilds with the site, so data stays current.