@verbatims/sdkv1.6.5MIT
“The only true wisdom is in knowing you know nothing.”
— Socrates

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/sdk

Capabilities

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']