{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hubspot",
    "name": "HubSpot",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kwall1/hubspot",
    "canonicalUrl": "https://clawhub.ai/kwall1/hubspot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hubspot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hubspot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hubspot"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/hubspot",
    "agentPageUrl": "https://openagent3.xyz/skills/hubspot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hubspot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hubspot/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "HubSpot Skill",
        "body": "Interact with HubSpot CRM and CMS via the REST API."
      },
      {
        "title": "Setup",
        "body": "Set your HubSpot Private App access token:\n\nHUBSPOT_ACCESS_TOKEN=pat-na2-xxxxx"
      },
      {
        "title": "API Base",
        "body": "All endpoints use: https://api.hubapi.com\n\nAuthorization header: Bearer $HUBSPOT_ACCESS_TOKEN"
      },
      {
        "title": "Contacts",
        "body": "Create contact:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"email\":\"test@example.com\",\"firstname\":\"Test\",\"lastname\":\"User\",\"phone\":\"555-1234\",\"company\":\"Acme Inc\",\"jobtitle\":\"Manager\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts\" | jq\n\nList contacts:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts?limit=10\" | jq\n\nSearch contacts:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"email\",\"operator\":\"CONTAINS_TOKEN\",\"value\":\"example.com\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/search\" | jq\n\nGet contact by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}?properties=email,firstname,lastname,phone,company\" | jq\n\nGet contact by email:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{email}?idProperty=email\" | jq"
      },
      {
        "title": "Companies",
        "body": "List companies:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/companies?limit=10&properties=name,domain,industry\" | jq\n\nSearch companies:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"name\",\"operator\":\"CONTAINS_TOKEN\",\"value\":\"acme\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/companies/search\" | jq\n\nGet company by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/companies/{companyId}?properties=name,domain,industry,numberofemployees\" | jq"
      },
      {
        "title": "Deals",
        "body": "Create deal:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"dealname\":\"New Deal\",\"amount\":\"10000\",\"closedate\":\"2026-06-01\",\"description\":\"Deal notes here\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals\" | jq\n\nList deals:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/deals?limit=10&properties=dealname,amount,dealstage,closedate\" | jq\n\nSearch deals:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"dealstage\",\"operator\":\"EQ\",\"value\":\"closedwon\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/search\" | jq\n\nGet deal by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/{dealId}?properties=dealname,amount,dealstage,closedate,pipeline\" | jq"
      },
      {
        "title": "Owners",
        "body": "List owners (users):\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/owners\" | jq"
      },
      {
        "title": "Update & Assign Owner",
        "body": "Update contact properties:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"phone\":\"555-9999\",\"jobtitle\":\"Director\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}\" | jq\n\nAssign owner to contact:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"hubspot_owner_id\":\"{ownerId}\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}\" | jq\n\nAssign owner to deal:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"hubspot_owner_id\":\"{ownerId}\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/{dealId}\" | jq"
      },
      {
        "title": "Associations",
        "body": "Get associated contacts for a company:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v4/objects/companies/{companyId}/associations/contacts\" | jq\n\nGet associated deals for a contact:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v4/objects/contacts/{contactId}/associations/deals\" | jq\n\nCreate association (deal to contact):\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"inputs\":[{\"from\":{\"id\":\"{dealId}\"},\"to\":{\"id\":\"{contactId}\"},\"types\":[{\"associationCategory\":\"HUBSPOT_DEFINED\",\"associationTypeId\":3}]}]}' \\\n  \"https://api.hubapi.com/crm/v4/associations/deals/contacts/batch/create\" | jq\n\nCommon association type IDs:\n\n3: Deal to Contact\n5: Deal to Company\n1: Contact to Company"
      },
      {
        "title": "Properties (Schema)",
        "body": "List contact properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/contacts\" | jq '.results[].name'\n\nList company properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/companies\" | jq '.results[].name'\n\nList deal properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/deals\" | jq '.results[].name'"
      },
      {
        "title": "Pages",
        "body": "List site pages:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/pages/site-pages?limit=10\" | jq\n\nList landing pages:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/pages/landing-pages?limit=10\" | jq"
      },
      {
        "title": "Domains",
        "body": "List domains:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/domains\" | jq"
      },
      {
        "title": "Files",
        "body": "List files:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/files/v3/files?limit=10\" | jq\n\nSearch files:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/files/v3/files/search?name=logo\" | jq"
      },
      {
        "title": "Search Operators",
        "body": "For search endpoints, use these operators in filters:\n\nOperatorDescriptionEQEqual toNEQNot equal toLTLess thanLTELess than or equalGTGreater thanGTEGreater than or equalCONTAINS_TOKENContains wordNOT_CONTAINS_TOKENDoes not contain wordHAS_PROPERTYHas a valueNOT_HAS_PROPERTYDoes not have a value"
      },
      {
        "title": "PowerShell Examples",
        "body": "For Windows/PowerShell, use Invoke-RestMethod:\n\n$headers = @{ \n  \"Authorization\" = \"Bearer $env:HUBSPOT_ACCESS_TOKEN\"\n  \"Content-Type\" = \"application/json\" \n}\n\n# List contacts\nInvoke-RestMethod -Uri \"https://api.hubapi.com/crm/v3/objects/contacts?limit=10\" -Headers $headers\n\n# Search contacts\n$body = @{\n  filterGroups = @(@{\n    filters = @(@{\n      propertyName = \"email\"\n      operator = \"CONTAINS_TOKEN\"\n      value = \"example.com\"\n    })\n  })\n  limit = 10\n} | ConvertTo-Json -Depth 5\n\nInvoke-RestMethod -Method POST -Uri \"https://api.hubapi.com/crm/v3/objects/contacts/search\" -Headers $headers -Body $body"
      },
      {
        "title": "Notes",
        "body": "Full CRUD operations supported with appropriate scopes\nRate limits: 100 requests per 10 seconds for private apps\nPagination: Use after parameter from paging.next.after for next page\nPortal ID is in the record URL: https://app-na2.hubspot.com/contacts/{portalId}/record/..."
      }
    ],
    "body": "HubSpot Skill\n\nInteract with HubSpot CRM and CMS via the REST API.\n\nSetup\n\nSet your HubSpot Private App access token:\n\nHUBSPOT_ACCESS_TOKEN=pat-na2-xxxxx\n\nAPI Base\n\nAll endpoints use: https://api.hubapi.com\n\nAuthorization header: Bearer $HUBSPOT_ACCESS_TOKEN\n\nCRM Objects\nContacts\n\nCreate contact:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"email\":\"test@example.com\",\"firstname\":\"Test\",\"lastname\":\"User\",\"phone\":\"555-1234\",\"company\":\"Acme Inc\",\"jobtitle\":\"Manager\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts\" | jq\n\n\nList contacts:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts?limit=10\" | jq\n\n\nSearch contacts:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"email\",\"operator\":\"CONTAINS_TOKEN\",\"value\":\"example.com\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/search\" | jq\n\n\nGet contact by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}?properties=email,firstname,lastname,phone,company\" | jq\n\n\nGet contact by email:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{email}?idProperty=email\" | jq\n\nCompanies\n\nList companies:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/companies?limit=10&properties=name,domain,industry\" | jq\n\n\nSearch companies:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"name\",\"operator\":\"CONTAINS_TOKEN\",\"value\":\"acme\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/companies/search\" | jq\n\n\nGet company by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/companies/{companyId}?properties=name,domain,industry,numberofemployees\" | jq\n\nDeals\n\nCreate deal:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"dealname\":\"New Deal\",\"amount\":\"10000\",\"closedate\":\"2026-06-01\",\"description\":\"Deal notes here\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals\" | jq\n\n\nList deals:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/deals?limit=10&properties=dealname,amount,dealstage,closedate\" | jq\n\n\nSearch deals:\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"dealstage\",\"operator\":\"EQ\",\"value\":\"closedwon\"}]}],\"limit\":10}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/search\" | jq\n\n\nGet deal by ID:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/{dealId}?properties=dealname,amount,dealstage,closedate,pipeline\" | jq\n\nOwners\n\nList owners (users):\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/owners\" | jq\n\nUpdate & Assign Owner\n\nUpdate contact properties:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"phone\":\"555-9999\",\"jobtitle\":\"Director\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}\" | jq\n\n\nAssign owner to contact:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"hubspot_owner_id\":\"{ownerId}\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/contacts/{contactId}\" | jq\n\n\nAssign owner to deal:\n\ncurl -s -X PATCH -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"properties\":{\"hubspot_owner_id\":\"{ownerId}\"}}' \\\n  \"https://api.hubapi.com/crm/v3/objects/deals/{dealId}\" | jq\n\nAssociations\n\nGet associated contacts for a company:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v4/objects/companies/{companyId}/associations/contacts\" | jq\n\n\nGet associated deals for a contact:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v4/objects/contacts/{contactId}/associations/deals\" | jq\n\n\nCreate association (deal to contact):\n\ncurl -s -X POST -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"inputs\":[{\"from\":{\"id\":\"{dealId}\"},\"to\":{\"id\":\"{contactId}\"},\"types\":[{\"associationCategory\":\"HUBSPOT_DEFINED\",\"associationTypeId\":3}]}]}' \\\n  \"https://api.hubapi.com/crm/v4/associations/deals/contacts/batch/create\" | jq\n\n\nCommon association type IDs:\n\n3: Deal to Contact\n5: Deal to Company\n1: Contact to Company\nProperties (Schema)\n\nList contact properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/contacts\" | jq '.results[].name'\n\n\nList company properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/companies\" | jq '.results[].name'\n\n\nList deal properties:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/crm/v3/properties/deals\" | jq '.results[].name'\n\nCMS\nPages\n\nList site pages:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/pages/site-pages?limit=10\" | jq\n\n\nList landing pages:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/pages/landing-pages?limit=10\" | jq\n\nDomains\n\nList domains:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/cms/v3/domains\" | jq\n\nFiles\n\nList files:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/files/v3/files?limit=10\" | jq\n\n\nSearch files:\n\ncurl -s -H \"Authorization: Bearer $HUBSPOT_ACCESS_TOKEN\" \\\n  \"https://api.hubapi.com/files/v3/files/search?name=logo\" | jq\n\nSearch Operators\n\nFor search endpoints, use these operators in filters:\n\nOperator\tDescription\nEQ\tEqual to\nNEQ\tNot equal to\nLT\tLess than\nLTE\tLess than or equal\nGT\tGreater than\nGTE\tGreater than or equal\nCONTAINS_TOKEN\tContains word\nNOT_CONTAINS_TOKEN\tDoes not contain word\nHAS_PROPERTY\tHas a value\nNOT_HAS_PROPERTY\tDoes not have a value\nPowerShell Examples\n\nFor Windows/PowerShell, use Invoke-RestMethod:\n\n$headers = @{ \n  \"Authorization\" = \"Bearer $env:HUBSPOT_ACCESS_TOKEN\"\n  \"Content-Type\" = \"application/json\" \n}\n\n# List contacts\nInvoke-RestMethod -Uri \"https://api.hubapi.com/crm/v3/objects/contacts?limit=10\" -Headers $headers\n\n# Search contacts\n$body = @{\n  filterGroups = @(@{\n    filters = @(@{\n      propertyName = \"email\"\n      operator = \"CONTAINS_TOKEN\"\n      value = \"example.com\"\n    })\n  })\n  limit = 10\n} | ConvertTo-Json -Depth 5\n\nInvoke-RestMethod -Method POST -Uri \"https://api.hubapi.com/crm/v3/objects/contacts/search\" -Headers $headers -Body $body\n\nNotes\nFull CRUD operations supported with appropriate scopes\nRate limits: 100 requests per 10 seconds for private apps\nPagination: Use after parameter from paging.next.after for next page\nPortal ID is in the record URL: https://app-na2.hubspot.com/contacts/{portalId}/record/..."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kwall1/hubspot",
    "publisherUrl": "https://clawhub.ai/kwall1/hubspot",
    "owner": "kwall1",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hubspot",
    "downloadUrl": "https://openagent3.xyz/downloads/hubspot",
    "agentUrl": "https://openagent3.xyz/skills/hubspot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hubspot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hubspot/agent.md"
  }
}