{
  "schemaVersion": "1.0",
  "item": {
    "slug": "creatordb-youtube-v3",
    "name": "Youtube Reporter by CreatorDB",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/poi5305/creatordb-youtube-v3",
    "canonicalUrl": "https://clawhub.ai/poi5305/creatordb-youtube-v3",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/creatordb-youtube-v3",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=creatordb-youtube-v3",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/creatordb-youtube-v3"
    },
    "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/creatordb-youtube-v3",
    "agentPageUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/agent",
    "manifestUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/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": "CreatorDB YouTube API",
        "body": "Search and retrieve YouTuber information including subscribers, growth stats, pricing estimates, and more."
      },
      {
        "title": "Search YouTubers by Name",
        "body": "curl --request POST \\\n  --url https://apiv3.creatordb.app/youtube/search \\\n  --header 'Accept: application/json' \\\n  --header 'Content-Type: application/json' \\\n  --header \"api-key: $CREATORDB_API_KEY\" \\\n  --data '{\n  \"filters\": [\n    {\n      \"filterName\": \"displayName\",\n      \"op\": \"=\",\n      \"value\": \"MrBeast\",\n      \"isFuzzySearch\": true\n    }\n  ],\n  \"desc\": true,\n  \"sortBy\": \"totalSubscribers\",\n  \"pageSize\": 5,\n  \"offset\": 0\n}'\n\nSearch Response:\n\n{\n  \"data\": {\n    \"creatorList\": [\n      {\n        \"displayName\": \"YouTube\",\n        \"uniqueId\": \"@youtube\",\n        \"channelId\": \"UCBR8-60-B28hp2BmDPdntcQ\",\n        \"avatarUrl\": \"https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj\",\n        \"totalSubscribers\": 13900000\n      }\n    ],\n    \"hasNextPage\": true,\n    \"nextOffset\": 100\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "Get YouTuber Profile",
        "body": "curl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/profile?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header \"api-key: $CREATORDB_API_KEY\"\n\nProfile Response:\n\n{\n  \"data\": {\n    \"channelId\": \"UCBR8-60-B28hp2BmDPdntcQ\",\n    \"uniqueId\": \"@youtube\",\n    \"displayName\": \"YouTube\",\n    \"categoryBreakdown\": [\n      {\n        \"category\": \"Gaming\",\n        \"share\": 0.3241\n      }\n    ],\n    \"avatarUrl\": \"https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj\",\n    \"bio\": \"The Most Botted Channel EVER\",\n    \"isVerified\": true,\n    \"hasSponsors\": true,\n    \"hasMemberOnlyContents\": true,\n    \"country\": \"TWN\",\n    \"mainLanguage\": \"zht\",\n    \"languages\": [\n      \"zht\",\n      \"eng\"\n    ],\n    \"secondLanguage\": \"eng\",\n    \"totalContents\": 399,\n    \"totalSubscribers\": 13900000,\n    \"subscriberGrowth\": {\n      \"g7\": 0.1234,\n      \"g30\": 0.2345,\n      \"g90\": 0.3456\n    },\n    \"hashtags\": [\n      {\n        \"name\": \"#starrailsimulator\",\n        \"contentCount\": 250\n      }\n    ],\n    \"topics\": [\n      \"freegames_Gaming\"\n    ],\n    \"niches\": [\n      \"roblox_Gaming\"\n    ],\n    \"otherLinks\": [\n      {\n        \"title\": \"Instagram\",\n        \"url\": \"https://www.instagram.com/instagram\"\n      }\n    ],\n    \"lastPublishTime\": 1755142212000,\n    \"relatedCreators\": [\n      \"UCBR8-60-B28hp2BmDPdntcQ\",\n      \"UC4PooiX37Pld1T8J5SYT-SQ\"\n    ],\n    \"videoPrice\": {\n      \"cpmLow\": 5.5,\n      \"cpmRaw\": 8.2,\n      \"cpmHigh\": 12,\n      \"priceLow\": 1000,\n      \"priceRaw\": 1500,\n      \"priceHigh\": 2200\n    },\n    \"shortsPrice\": {\n      \"cpmLow\": 3,\n      \"cpmRaw\": 5,\n      \"cpmHigh\": 8,\n      \"priceLow\": 500,\n      \"priceRaw\": 750,\n      \"priceHigh\": 1100\n    },\n    \"lastDbUpdateTime\": 1753179002000\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "Get YouTuber performance",
        "body": "curl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/performance?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\nResponse\n\n{\n  \"data\": {\n    \"contentCountByDays\": {\n      \"7d\": 1,\n      \"30d\": 2,\n      \"90d\": 2\n    },\n    \"ranking\": {\n      \"totalSubscribers\": {\n        \"global\": 0.9912,\n        \"country\": 0.9986,\n        \"language\": 0.9764\n      },\n      \"avgEngagementRate\": {\n        \"global\": 0.9912,\n        \"country\": 0.9986,\n        \"language\": 0.9764\n      }\n    },\n    \"videosPerformanceRecent\": {\n      \"likes\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"comments\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"views\": {\n        \"all\": 3599,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149,\n        \"percentile25\": 35,\n        \"percentile75\": 85,\n        \"iqr\": 50\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"shortsPerformanceRecent\": {\n      \"likes\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"comments\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"views\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988,\n        \"percentile25\": 80,\n        \"percentile75\": 250,\n        \"iqr\": 170\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"videosPerformanceAll\": {\n      \"likes\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"comments\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"views\": {\n        \"all\": 3599,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149,\n        \"percentile25\": 35,\n        \"percentile75\": 85,\n        \"iqr\": 50\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"shortsPerformanceAll\": {\n      \"likes\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"comments\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"views\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988,\n        \"percentile25\": 80,\n        \"percentile75\": 250,\n        \"iqr\": 170\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"recentVideosGrowth\": {\n      \"g7\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g30\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g90\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      }\n    },\n    \"recentShortsGrowth\": {\n      \"g7\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g30\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g90\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      }\n    }\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "Get YouTuber content detail",
        "body": "curl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/content-detail?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\nResponse\n\n{\n  \"data\": {\n    \"recentVideos\": [\n      {\n        \"publishTime\": 1755273600000,\n        \"contentId\": \"FbCF_H4ZD64\",\n        \"title\": \"I hosted an ADMIN ABUSE on GROW A GARDEN\",\n        \"description\": \"Thanks @JandelTheGuy play grow a garden here support a small developer like Jandel. Today I hosted an admin abuse to 20 million people\",\n        \"length\": 873,\n        \"isSponsored\": true,\n        \"isMemberOnly\": false,\n        \"likes\": 153000,\n        \"comments\": 15182,\n        \"views\": 5009695,\n        \"engagementRate\": 0.0336,\n        \"hashtags\": [\n          \"#VLOG\"\n        ]\n      }\n    ],\n    \"recentShorts\": [\n      {\n        \"publishTime\": 1754928000000,\n        \"contentId\": \"6tlVsknqy9M\",\n        \"title\": \"Customized skin care clinics available in Japan #cosmeticmedicine\",\n        \"description\": \"Recommended for those looking for skin care in Tokyo. Shimokitazawa Cosmetic Dermatology Clinic @oneup_clinic\",\n        \"length\": 60,\n        \"likes\": 10000,\n        \"comments\": 100,\n        \"views\": 15000,\n        \"engagementRate\": 0.0517,\n        \"hashtags\": [\n          \"#cosmeticmedicine\"\n        ]\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "Get YouTuber Sponsorship information",
        "body": "curl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/sponsorship?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\nResponse\n\n{\n  \"data\": {\n    \"sponsorList\": [\n      {\n        \"brandName\": \"Acer\",\n        \"brandId\": \"acer.com\",\n        \"brandIgIds\": [\n          \"acer\"\n        ],\n        \"sponsoredVideos\": [\n          {\n            \"publishTime\": 1754797869000,\n            \"contentId\": \"eHnzGYHEdO0\",\n            \"title\": \"ROBLOX OP ADMIN IN STEAL A BRAINROT\",\n            \"description\": \"Roblox admin in steal a brainrot except way more OP. i gave almost everyone their stuff back its just fun to make these kids laugh in voice chat lol\",\n            \"length\": 873,\n            \"isSponsored\": true,\n            \"isMemberOnly\": false,\n            \"likes\": 10000,\n            \"comments\": 100,\n            \"views\": 15000,\n            \"engagementRate\": 0.1202,\n            \"hashtags\": [\n              \"#VLOG\"\n            ]\n          }\n        ],\n        \"sponsoredVideosPerformance\": {\n          \"likes\": {\n            \"all\": 2944445,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149\n          },\n          \"comments\": {\n            \"all\": 2944445,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149\n          },\n          \"views\": {\n            \"all\": 3599,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149,\n            \"percentile25\": 35,\n            \"percentile75\": 85,\n            \"iqr\": 50\n          },\n          \"length\": {\n            \"avg\": 180\n          },\n          \"engagement\": {\n            \"avgEngagementRate\": 0.5201,\n            \"likesPerSubscriber\": 0.1111,\n            \"commentsPerSubscriber\": 0.1111,\n            \"viewsPerSubscriber\": 0.1111,\n            \"engagementConsistency\": {\n              \"cv\": 0.1001,\n              \"medianVsMean\": 0.9001,\n              \"topBottomRatio\": 1.2001,\n              \"consistencyScore\": 63,\n              \"consistencyLevel\": \"high\"\n            }\n          }\n        }\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "Get YouTuber audience demographics",
        "body": "curl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/audience?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\nResponse\n\n{\n  \"data\": {\n    \"audienceLocations\": [\n      {\n        \"country\": \"USA\",\n        \"share\": 0.5511\n      },\n      {\n        \"country\": \"GBR\",\n        \"share\": 0.1313\n      },\n      {\n        \"country\": \"CAN\",\n        \"share\": 0.0501\n      }\n    ],\n    \"audienceGender\": {\n      \"maleRatio\": 0.5233,\n      \"femaleRatio\": 0.4412\n    },\n    \"audienceAvgAge\": 30,\n    \"audienceAgeBreakdown\": [\n      {\n        \"ageRange\": \"13-17\",\n        \"share\": 0.0123\n      },\n      {\n        \"ageRange\": \"18-24\",\n        \"share\": 0.1871\n      },\n      {\n        \"ageRange\": \"25-34\",\n        \"share\": 0.2818\n      },\n      {\n        \"ageRange\": \"35-44\",\n        \"share\": 0.2025\n      },\n      {\n        \"ageRange\": \"45-54\",\n        \"share\": 0.1398\n      },\n      {\n        \"ageRange\": \"55-64\",\n        \"share\": 0.1\n      },\n      {\n        \"ageRange\": \"65+\",\n        \"share\": 0.0765\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}"
      },
      {
        "title": "API Key",
        "body": "CREATORDB_API_KEY env var is required\nOr set skills.\"creatordb-youtube-v3\".env.CREATORDB_API_KEY in ~/.clawdbot/moltbot.json\nGet your API key at https://www.creatordb.app"
      },
      {
        "title": "Notes",
        "body": "Use channelId from search results to get detailed profile\nsubscriberGrowth: g7/g30/g90 = growth rate over 7/30/90 days\nvideoPrice/shortsPrice: estimated sponsorship pricing in USD\ncategoryBreakdown: channel content category distribution\nPagination: use offset and pageSize for search results"
      }
    ],
    "body": "CreatorDB YouTube API\n\nSearch and retrieve YouTuber information including subscribers, growth stats, pricing estimates, and more.\n\nSearch YouTubers by Name\ncurl --request POST \\\n  --url https://apiv3.creatordb.app/youtube/search \\\n  --header 'Accept: application/json' \\\n  --header 'Content-Type: application/json' \\\n  --header \"api-key: $CREATORDB_API_KEY\" \\\n  --data '{\n  \"filters\": [\n    {\n      \"filterName\": \"displayName\",\n      \"op\": \"=\",\n      \"value\": \"MrBeast\",\n      \"isFuzzySearch\": true\n    }\n  ],\n  \"desc\": true,\n  \"sortBy\": \"totalSubscribers\",\n  \"pageSize\": 5,\n  \"offset\": 0\n}'\n\n\nSearch Response:\n\n{\n  \"data\": {\n    \"creatorList\": [\n      {\n        \"displayName\": \"YouTube\",\n        \"uniqueId\": \"@youtube\",\n        \"channelId\": \"UCBR8-60-B28hp2BmDPdntcQ\",\n        \"avatarUrl\": \"https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj\",\n        \"totalSubscribers\": 13900000\n      }\n    ],\n    \"hasNextPage\": true,\n    \"nextOffset\": 100\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nGet YouTuber Profile\ncurl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/profile?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header \"api-key: $CREATORDB_API_KEY\"\n\n\nProfile Response:\n\n{\n  \"data\": {\n    \"channelId\": \"UCBR8-60-B28hp2BmDPdntcQ\",\n    \"uniqueId\": \"@youtube\",\n    \"displayName\": \"YouTube\",\n    \"categoryBreakdown\": [\n      {\n        \"category\": \"Gaming\",\n        \"share\": 0.3241\n      }\n    ],\n    \"avatarUrl\": \"https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj\",\n    \"bio\": \"The Most Botted Channel EVER\",\n    \"isVerified\": true,\n    \"hasSponsors\": true,\n    \"hasMemberOnlyContents\": true,\n    \"country\": \"TWN\",\n    \"mainLanguage\": \"zht\",\n    \"languages\": [\n      \"zht\",\n      \"eng\"\n    ],\n    \"secondLanguage\": \"eng\",\n    \"totalContents\": 399,\n    \"totalSubscribers\": 13900000,\n    \"subscriberGrowth\": {\n      \"g7\": 0.1234,\n      \"g30\": 0.2345,\n      \"g90\": 0.3456\n    },\n    \"hashtags\": [\n      {\n        \"name\": \"#starrailsimulator\",\n        \"contentCount\": 250\n      }\n    ],\n    \"topics\": [\n      \"freegames_Gaming\"\n    ],\n    \"niches\": [\n      \"roblox_Gaming\"\n    ],\n    \"otherLinks\": [\n      {\n        \"title\": \"Instagram\",\n        \"url\": \"https://www.instagram.com/instagram\"\n      }\n    ],\n    \"lastPublishTime\": 1755142212000,\n    \"relatedCreators\": [\n      \"UCBR8-60-B28hp2BmDPdntcQ\",\n      \"UC4PooiX37Pld1T8J5SYT-SQ\"\n    ],\n    \"videoPrice\": {\n      \"cpmLow\": 5.5,\n      \"cpmRaw\": 8.2,\n      \"cpmHigh\": 12,\n      \"priceLow\": 1000,\n      \"priceRaw\": 1500,\n      \"priceHigh\": 2200\n    },\n    \"shortsPrice\": {\n      \"cpmLow\": 3,\n      \"cpmRaw\": 5,\n      \"cpmHigh\": 8,\n      \"priceLow\": 500,\n      \"priceRaw\": 750,\n      \"priceHigh\": 1100\n    },\n    \"lastDbUpdateTime\": 1753179002000\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nGet YouTuber performance\ncurl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/performance?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\n\nResponse\n\n{\n  \"data\": {\n    \"contentCountByDays\": {\n      \"7d\": 1,\n      \"30d\": 2,\n      \"90d\": 2\n    },\n    \"ranking\": {\n      \"totalSubscribers\": {\n        \"global\": 0.9912,\n        \"country\": 0.9986,\n        \"language\": 0.9764\n      },\n      \"avgEngagementRate\": {\n        \"global\": 0.9912,\n        \"country\": 0.9986,\n        \"language\": 0.9764\n      }\n    },\n    \"videosPerformanceRecent\": {\n      \"likes\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"comments\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"views\": {\n        \"all\": 3599,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149,\n        \"percentile25\": 35,\n        \"percentile75\": 85,\n        \"iqr\": 50\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"shortsPerformanceRecent\": {\n      \"likes\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"comments\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"views\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988,\n        \"percentile25\": 80,\n        \"percentile75\": 250,\n        \"iqr\": 170\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"videosPerformanceAll\": {\n      \"likes\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"comments\": {\n        \"all\": 2944445,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149\n      },\n      \"views\": {\n        \"all\": 3599,\n        \"avg\": 100,\n        \"median\": 48,\n        \"min\": 20,\n        \"max\": 149,\n        \"percentile25\": 35,\n        \"percentile75\": 85,\n        \"iqr\": 50\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"shortsPerformanceAll\": {\n      \"likes\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"comments\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988\n      },\n      \"views\": {\n        \"all\": 2459,\n        \"avg\": 100,\n        \"median\": 120,\n        \"min\": 50,\n        \"max\": 988,\n        \"percentile25\": 80,\n        \"percentile75\": 250,\n        \"iqr\": 170\n      },\n      \"length\": {\n        \"avg\": 180\n      },\n      \"engagement\": {\n        \"avgEngagementRate\": 0.5201,\n        \"likesPerSubscriber\": 0.1111,\n        \"commentsPerSubscriber\": 0.1111,\n        \"viewsPerSubscriber\": 0.1111,\n        \"engagementConsistency\": {\n          \"cv\": 0.1001,\n          \"medianVsMean\": 0.9001,\n          \"topBottomRatio\": 1.2001,\n          \"consistencyScore\": 63,\n          \"consistencyLevel\": \"high\"\n        }\n      }\n    },\n    \"recentVideosGrowth\": {\n      \"g7\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g30\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g90\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      }\n    },\n    \"recentShortsGrowth\": {\n      \"g7\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g30\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      },\n      \"g90\": {\n        \"avgViews\": 0.2345,\n        \"engagementRate\": 0.0567\n      }\n    }\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nGet YouTuber content detail\ncurl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/content-detail?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\n\nResponse\n\n{\n  \"data\": {\n    \"recentVideos\": [\n      {\n        \"publishTime\": 1755273600000,\n        \"contentId\": \"FbCF_H4ZD64\",\n        \"title\": \"I hosted an ADMIN ABUSE on GROW A GARDEN\",\n        \"description\": \"Thanks @JandelTheGuy play grow a garden here support a small developer like Jandel. Today I hosted an admin abuse to 20 million people\",\n        \"length\": 873,\n        \"isSponsored\": true,\n        \"isMemberOnly\": false,\n        \"likes\": 153000,\n        \"comments\": 15182,\n        \"views\": 5009695,\n        \"engagementRate\": 0.0336,\n        \"hashtags\": [\n          \"#VLOG\"\n        ]\n      }\n    ],\n    \"recentShorts\": [\n      {\n        \"publishTime\": 1754928000000,\n        \"contentId\": \"6tlVsknqy9M\",\n        \"title\": \"Customized skin care clinics available in Japan #cosmeticmedicine\",\n        \"description\": \"Recommended for those looking for skin care in Tokyo. Shimokitazawa Cosmetic Dermatology Clinic @oneup_clinic\",\n        \"length\": 60,\n        \"likes\": 10000,\n        \"comments\": 100,\n        \"views\": 15000,\n        \"engagementRate\": 0.0517,\n        \"hashtags\": [\n          \"#cosmeticmedicine\"\n        ]\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nGet YouTuber Sponsorship information\ncurl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/sponsorship?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\n\nResponse\n\n{\n  \"data\": {\n    \"sponsorList\": [\n      {\n        \"brandName\": \"Acer\",\n        \"brandId\": \"acer.com\",\n        \"brandIgIds\": [\n          \"acer\"\n        ],\n        \"sponsoredVideos\": [\n          {\n            \"publishTime\": 1754797869000,\n            \"contentId\": \"eHnzGYHEdO0\",\n            \"title\": \"ROBLOX OP ADMIN IN STEAL A BRAINROT\",\n            \"description\": \"Roblox admin in steal a brainrot except way more OP. i gave almost everyone their stuff back its just fun to make these kids laugh in voice chat lol\",\n            \"length\": 873,\n            \"isSponsored\": true,\n            \"isMemberOnly\": false,\n            \"likes\": 10000,\n            \"comments\": 100,\n            \"views\": 15000,\n            \"engagementRate\": 0.1202,\n            \"hashtags\": [\n              \"#VLOG\"\n            ]\n          }\n        ],\n        \"sponsoredVideosPerformance\": {\n          \"likes\": {\n            \"all\": 2944445,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149\n          },\n          \"comments\": {\n            \"all\": 2944445,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149\n          },\n          \"views\": {\n            \"all\": 3599,\n            \"avg\": 100,\n            \"median\": 48,\n            \"min\": 20,\n            \"max\": 149,\n            \"percentile25\": 35,\n            \"percentile75\": 85,\n            \"iqr\": 50\n          },\n          \"length\": {\n            \"avg\": 180\n          },\n          \"engagement\": {\n            \"avgEngagementRate\": 0.5201,\n            \"likesPerSubscriber\": 0.1111,\n            \"commentsPerSubscriber\": 0.1111,\n            \"viewsPerSubscriber\": 0.1111,\n            \"engagementConsistency\": {\n              \"cv\": 0.1001,\n              \"medianVsMean\": 0.9001,\n              \"topBottomRatio\": 1.2001,\n              \"consistencyScore\": 63,\n              \"consistencyLevel\": \"high\"\n            }\n          }\n        }\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nGet YouTuber audience demographics\ncurl --request GET \\\n  --url 'https://apiv3.creatordb.app/youtube/audience?channelId=UCBR8-60-B28hp2BmDPdntcQ' \\\n  --header 'Accept: application/json' \\\n  --header 'api-key: $CREATORDB_API_KEY'\n\n\nResponse\n\n{\n  \"data\": {\n    \"audienceLocations\": [\n      {\n        \"country\": \"USA\",\n        \"share\": 0.5511\n      },\n      {\n        \"country\": \"GBR\",\n        \"share\": 0.1313\n      },\n      {\n        \"country\": \"CAN\",\n        \"share\": 0.0501\n      }\n    ],\n    \"audienceGender\": {\n      \"maleRatio\": 0.5233,\n      \"femaleRatio\": 0.4412\n    },\n    \"audienceAvgAge\": 30,\n    \"audienceAgeBreakdown\": [\n      {\n        \"ageRange\": \"13-17\",\n        \"share\": 0.0123\n      },\n      {\n        \"ageRange\": \"18-24\",\n        \"share\": 0.1871\n      },\n      {\n        \"ageRange\": \"25-34\",\n        \"share\": 0.2818\n      },\n      {\n        \"ageRange\": \"35-44\",\n        \"share\": 0.2025\n      },\n      {\n        \"ageRange\": \"45-54\",\n        \"share\": 0.1398\n      },\n      {\n        \"ageRange\": \"55-64\",\n        \"share\": 0.1\n      },\n      {\n        \"ageRange\": \"65+\",\n        \"share\": 0.0765\n      }\n    ]\n  },\n  \"quotaUsed\": 1,\n  \"quotaUsedTotal\": 241,\n  \"remainingQuota\": 99759,\n  \"traceId\": \"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0\",\n  \"timestamp\": 1750732453635,\n  \"errorCode\": \"\",\n  \"errorDescription\": \"\",\n  \"success\": true\n}\n\nAPI Key\nCREATORDB_API_KEY env var is required\nOr set skills.\"creatordb-youtube-v3\".env.CREATORDB_API_KEY in ~/.clawdbot/moltbot.json\nGet your API key at https://www.creatordb.app\nNotes\nUse channelId from search results to get detailed profile\nsubscriberGrowth: g7/g30/g90 = growth rate over 7/30/90 days\nvideoPrice/shortsPrice: estimated sponsorship pricing in USD\ncategoryBreakdown: channel content category distribution\nPagination: use offset and pageSize for search results"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/poi5305/creatordb-youtube-v3",
    "publisherUrl": "https://clawhub.ai/poi5305/creatordb-youtube-v3",
    "owner": "poi5305",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3",
    "downloadUrl": "https://openagent3.xyz/downloads/creatordb-youtube-v3",
    "agentUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/agent",
    "manifestUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/creatordb-youtube-v3/agent.md"
  }
}