liquid/clipskade.com
◱ Coming soon

SDKs and CLI

Sourced from the LiquidClips dataset · 4,700,802 creatorsBy Daniel Diyepriye, Founder, LiquidClipsUpdated Jul 2026· 3 min read

Official TypeScript and Python SDKs and a command line are on the build path. They will wrap the versioned API with typed clients so you never hand-roll a request. This page is the preview.

Not published yet

The SDKs and CLI are not on npm or PyPI yet. The snippets below are the planned surface. Join the waitlist to install them the day they ship.

01What is coming

Typed clients for TypeScript and Python, plus a CLI for quick lookups from the terminal:

planned (not live)
// planned , @liquidclips/sdk (not published yet)
import { LiquidClips } from "@liquidclips/sdk";

const lc = new LiquidClips({ apiKey: "lc_live_..." });
const channel = await lc.resolve("@mkbhd");
const moments = await lc.clips.search(channel.channelId);
◱ Coming soon

Get on the the SDKs and CLI waitlist

This is on the build path, not live yet. Drop your email and Kade tells you the day it ships. No spam, one message.

02Until then

The resolve endpoint is live and one fetch away, so you can ship against real data now and drop in the SDK later with no rewrite.

works today
# what works today: the resolve endpoint, plain fetch
curl "https://liquidclips.app/api/resolve?url=@mkbhd"
Kade