Get started quickly with our official examples and integrations. Each repository includes working code, documentation, and best practices.
Direct REST API integration. Use with any programming language via HTTP requests.
Official Node.js SDK (@shipi18n/api) with TypeScript support and zero dependencies.
Example integration for React applications using the Shipi18n SDK.
Full-featured Next.js 14 example with App Router, Server Components, and API routes.
Command-line tool for translating locale files directly from your terminal.
Vue 3 + vue-i18n example with file translation and dynamic locale loading.
Server-side integration for Express, Fastify, and other Node.js frameworks.
Automate i18n translations in your CI/CD pipeline. Translates locale files on every push.
Sign up for free at shipi18n.com and get your API key from the dashboard.
Get your API keynpm install shipi18n # or yarn add shipi18n
# .env SHIPI18N_API_KEY=sk_live_your_key
import { translate } from 'shipi18n'
const result = await translate({
text: 'Hello, World!',
targetLanguages: ['es', 'fr']
})Check out our full API documentation for all available options and endpoints.
View All Repositories