@verbatims/sdkv1.6.5MIT — Socrates
“The only true wisdom is in knowing you know nothing.”
TypeScript SDK for the Verbatims quotes API
Browse, search, and manage quotes from literature, film, and music — fully typed, paginated, and rate-limit-aware.
Installation
npm install @verbatims/sdkCapabilities
One-liner queries
Full TypeScript autocomplete for every filter — author, language, tag, sort, and more.
TypeScript
const { data } = await vb.quotes.list({ language: 'fr', limit: 10 })Seamless pagination
Async generator that iterates through all results without ever thinking about page numbers.
TypeScript
for await (const q of vb.quotes.paginate()) { ... }Nuxt module included
Add the module to nuxt.config.ts and get auto-imported composables like useQuotes().
TypeScript
modules: ['@verbatims/sdk/nuxt/module']