For Developers

Build With GTM Skills

REST API, llms.txt for agentic discovery, and everything you need to integrate GTM Skills into your workflows.

Quick Start

Request
curl "https://gtm-skills.com/api/v1/prompts/recommend" \
  -H "Content-Type: application/json" \
  -d '{
    "role": "sdr",
    "industry": "saas",
    "stage": "prospecting"
  }'
Response
{
  "prompts": [
    {
      "id": "cold-email-series-b",
      "title": "Executive Cold Email (Series B)",
      "category": "outreach",
      "votes": 847,
      "copies": 2341
    },
    ...
  ]
}

Agents API

NEW

Four agents for your sales team: Scout (research), Writer (copy), Rep (outreach), Closer (deals).

List all agentsGET
curl https://gtm-skills.com/api/v1/agents
Get agent SKILL.mdGET
curl https://gtm-skills.com/api/v1/agents/writer/skill

Orchestrator API

Route any message to the right agent automatically. The orchestrator analyzes intent and returns the best agent(s) to handle the task.

curl -X POST "https://gtm-skills.com/api/v1/agents/orchestrate" \
  -H "Content-Type: application/json" \
  -d '{"message": "Find SaaS companies and write cold emails"}'
{
  "routing": {
    "primary": { "name": "Writer", "skill_url": "..." },
    "secondary": { "name": "Scout", "skill_url": "..." },
    "confidence": "high"
  },
  "suggested_prompt": "@Writer: Find SaaS companies..."
}

API Endpoints

GET
/api/v1/prompts

List all prompts with filtering

Prompts • Params: category, role, industry, search, limit

GET
/api/v1/prompts/:id

Get a specific prompt by ID

Prompts • Params: id

GET
/api/v1/prompts/recommend

Get context-aware prompt recommendations

Prompts • Params: role, industry, stage, limit

GET
/api/v1/agentsNEW

List all agents (Scout, Writer, Rep, Closer)

Agents

GET
/api/v1/agents/:id/skillNEW

Get SKILL.md for a specific agent

Agents • Params: id (scout, writer, rep, closer)

POST
/api/v1/agents/orchestrateNEW

Route a message to the right agent(s)

Agents • Params: message, include_skills

GET
/api/v1/openclaw/skills

List all OpenClaw GTM skills with commands and setup

OpenClaw

GET
/api/v1/agentic-bdrNEW

Get agentic workflows and agent configurations

Agentic BDR

GET
/api/v1/mcpNEW

Get MCP tools, config examples, and setup instructions

MCP Server

GET
/api/v1/voice/templates

List voice call templates for agentic SDR

Voice • Params: category

llms.txt for Agentic Discovery

GTM Skills includes an llms.txt file that allows AI agents to automatically discover and use our API. This enables agentic workflows where AI can find the right prompts without human intervention.

Coming Soon

TypeScript & Python SDKs

Official SDKs for TypeScript and Python are in development. Star the repo to get notified.