Skip to content

Instantly share code, notes, and snippets.

View ritmo-v0's full-sized avatar
☝️
君をハナセナイ🫴

Ritmo ritmo-v0

☝️
君をハナセナイ🫴
View GitHub Profile
@ritmo-v0
ritmo-v0 / spotify-search-web-api.ts
Last active July 14, 2025 00:49
A simple TypeScript example of Spotify's `search` Web API.
import { readFile } from "fs/promises";
// Types & Interfaces
type Song = SongData & {
search_result: SearchResult[];
};
type SongData = {
name: string;
artist: string;
};