clickup-hello-world

Featured

Make your first ClickUp API v2 calls: list workspaces, spaces, and create a task. Use when starting a new ClickUp integration, testing your setup, or learning the ClickUp hierarchy (Workspace > Space > Folder > List > Task). Trigger: "clickup hello world", "clickup first call", "clickup quick start", "test clickup API", "create clickup task".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ClickUp Hello World ## Overview Walk through the ClickUp hierarchy and make your first API calls. ClickUp's data model: **Workspace** (called "team" in API v2) > **Space** > **Folder** (optional) > **List** > **Task**. ## Prerequisites - Completed `clickup-install-auth` setup - Valid `CLICKUP_API_TOKEN` in environment ## ClickUp Hierarchy ``` Workspace (team_id) GET /api/v2/team └── Space (space_id) GET /api/v2/team/{team_id}/space ├── List GET /api/v2/space/{space_id}/list (folderless lists) └── Folder GET /api/v2/space/{space_id}/folder └── List GET /api/v2/folder/{folder_id}/list └── Task GET /api/v2/list/{list_id}/task ``` ## Step 1: Discover Your Workspace ```bash # Get authorized workspaces (returns team_id needed for all subsequent calls) curl -s https://api.clickup.com/api/v2/team \ -H "Authorization: $CLICKUP_API_TOKEN" | jq '.teams[] | {id, name}' ``` Response shape: ```json { "teams": [{ "id": "1234567", "name": "My Workspace", "color": "#536cfe", "members": [{ "user": { "id": 123, "username": "john", "email": "john@example.com" } }] }] } ``` ## Step 2: List Spaces ```bash TEAM_ID="1234567" curl -s "https://api.clickup.com/api/v2/team/${TEAM_ID}/space?archived=false" \ -H "Authorization: $CLICKUP_API_TOKEN" | jq '.spaces[] | {id, name}' ``` ## Step 3: Get Lists in a Space ```bash SPACE_ID="12345678" # Folderless lists (directly in Space) curl -...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clickup-core-workflow-b

Manage ClickUp workspaces, spaces, folders, lists, and views via API v2. Use when creating project structures, organizing spaces and lists, or managing the ClickUp hierarchy programmatically. Trigger: "clickup space", "clickup folder", "clickup list", "clickup views", "create clickup space", "organize clickup workspace", "clickup hierarchy".

2,266 Updated today
jeremylongshore
AI & Automation Listed

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

335 Updated today
aiskillstore
AI & Automation Featured

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

39,227 Updated today
sickn33
AI & Automation Featured

clickup-enterprise-rbac

Implement ClickUp Enterprise SSO, OAuth 2.0 multi-workspace access, role-based permissions, and organization management via API v2. Trigger: "clickup SSO", "clickup RBAC", "clickup enterprise", "clickup roles", "clickup permissions", "clickup OAuth app", "clickup multi-workspace".

2,266 Updated today
jeremylongshore
AI & Automation Solid

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

2,987 Updated 4 days ago
davepoon