Script Kit Logo
Script Kit
by John Lindquist

Scripts by tsmarin

New Stashpad Doc

tsmarin's avatar
Theo Marin
// Name: New Stashpad Doc
import "@johnlindquist/kit"
open('https://stash.new/')

Search Stashpad Docs

tsmarin's avatar
Theo Marin
// Name: Search Stashpad Docs
import "@johnlindquist/kit"
const fetch = await npm("node-fetch");
interface RecentDoc {
id: string;
title: string;
}
interface QueryResult {
data: RecentDoc[];
}
const apiKey = await env("STASHPAD_DOCS_API_KEY", {
hint: `Login to your account on <a href="https://docs.stashpad.com">Stashpad Docs</a> and generate an API key from the settings menu (top right corner).`,
});
async function getRecentDocs(apiKey: string) {
21 lines below • View full script