Hlp Ghl Api
/install hlp-ghl-api
HubLinkPro GHL API Skill
Base URL: https://services.leadconnectorhq.com
Auth header: Authorization: Bearer $GHL_API_KEY
All requests include: Version: 2021-07-28
Get Contact by Phone or Email
curl -s -H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28"
"https://services.leadconnectorhq.com/contacts/search/duplicate?locationId=$GHL_LOCATION_ID&email=$EMAIL" | jq .
Create or Update Contact
curl -s -X POST "https://services.leadconnectorhq.com/contacts/"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"firstName":"$FIRST","lastName":"$LAST","email":"$EMAIL","phone":"$PHONE","locationId":"'$GHL_LOCATION_ID'","tags":["$TAGS"],"source":"$SOURCE"}' | jq .
Add Tags to Contact
curl -s -X POST "https://services.leadconnectorhq.com/contacts/$CONTACT_ID/tags"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"tags":["$TAG1","$TAG2"]}' | jq .
Create Opportunity (Pipeline Deal)
curl -s -X POST "https://services.leadconnectorhq.com/opportunities/"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"pipelineId":"$PIPELINE_ID","locationId":"'$GHL_LOCATION_ID'","name":"$DEAL_NAME","stageId":"$STAGE_ID","contactId":"$CONTACT_ID","status":"open"}' | jq .
Move Opportunity Stage
curl -s -X PUT "https://services.leadconnectorhq.com/opportunities/$OPP_ID/status"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"stageId":"$NEW_STAGE_ID"}' | jq .
List Pipelines
curl -s -H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28"
"https://services.leadconnectorhq.com/opportunities/pipelines?locationId=$GHL_LOCATION_ID" | jq .
Send SMS via Conversations API
curl -s -X POST "https://services.leadconnectorhq.com/conversations/messages"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"type":"SMS","contactId":"$CONTACT_ID","message":"$MESSAGE"}' | jq .
Search Contacts by Tag
curl -s -H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28"
"https://services.leadconnectorhq.com/contacts/?locationId=$GHL_LOCATION_ID&query=$SEARCH_TERM&limit=20" | jq .
Get Contact Activity / Notes
curl -s -H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28"
"https://services.leadconnectorhq.com/contacts/$CONTACT_ID/notes" | jq .
Add Note to Contact
curl -s -X POST "https://services.leadconnectorhq.com/contacts/$CONTACT_ID/notes"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json"
-d '{"body":"$NOTE_TEXT"}' | jq .
Trigger Workflow for Contact
curl -s -X POST "https://services.leadconnectorhq.com/contacts/$CONTACT_ID/workflow/$WORKFLOW_ID"
-H "Authorization: Bearer $GHL_API_KEY" -H "Version: 2021-07-28" -H "Content-Type: application/json" | jq .
Key HubLinkPro Context
- Location: Tri-Cities TN (Johnson City, Kingsport, Bristol)
- Pipelines: HLP – Sellers, New Construction, Pre-Foreclosure
- Tags: new-lead, fb-seller, new-construction, pre-foreclosure, contacted, qualified, nurture
- Agents: Tasha, Nate, Cory, Laura, Mary Ellen, Josh
- When assigning leads, use tag format: agent-{firstname}
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install hlp-ghl-api - 安装完成后,直接呼叫该 Skill 的名称或使用
/hlp-ghl-api触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Hlp Ghl Api 是什么?
HubLinkPro GoHighLevel API — manage contacts, pipelines, workflows, and messaging for Tri-Cities real estate lead gen. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 129 次。
如何安装 Hlp Ghl Api?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install hlp-ghl-api」即可一键安装,无需额外配置。
Hlp Ghl Api 是免费的吗?
是的,Hlp Ghl Api 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Hlp Ghl Api 支持哪些平台?
Hlp Ghl Api 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Hlp Ghl Api?
由 mbright4497(@mbright4497)开发并维护,当前版本 v1.0.0。