
Xata Has a Free API — Serverless Database with Full-Text Search Built-In
Xata is a serverless database with built-in full-text search, vector search, and file attachments. Think of it as PostgreSQL + Elasticsearch + S3 in one API. Why Xata? Full-text search — built-in, no Elasticsearch needed Vector search — for AI/embeddings, built-in File attachments — attach files to records, no S3 setup Free tier — 15GB storage, 75 requests/second Branching — like Git branches for your database Quick Start npm install @xata.io/client npx xata init CRUD Operations import { getXataClient } from ' ./xata ' ; const xata = getXataClient (); // Create const user = await xata . db . users . create ({ name : ' Alice ' , email : ' alice@example.com ' , bio : ' Full-stack developer ' , }); // Read const users = await xata . db . users . filter ({ email : ' alice@example.com ' }) . getMany (); // Update await xata . db . users . update ( user . id , { name : ' Alice Smith ' }); // Delete await xata . db . users . delete ( user . id ); Full-Text Search const results = await xata .
Continue reading on Dev.to Tutorial
Opens in a new tab



