tRPC: The End of API Docs as We Know Them TRPC v11, a TypeScript Remote Procedure Call framework, eliminates the need for REST endpoints, OpenAPI specs, and manual type synchronization by allowing developers to write TypeScript functions on the server that are callable from the frontend with full type inference. The framework, stable since early 2026, introduces support for React Query v5 with Suspense, Server-Sent Events for real-time features, native FormData and File handling, and router-level code-splitting. A developer who built the same CRUD app with tRPC, REST plus Zod, and GraphQL reported zero type mismatches with tRPC over three weeks, compared to two with REST and one with GraphQL. tRPC stands for TypeScript Remote Procedure Call. The pitch is simple: instead of writing REST endpoints, writing OpenAPI specs, generating TypeScript types from those specs, then manually keeping all that in sync — you just write TypeScript functions on the server. tRPC makes them callable from the frontend with full type inference. No code generation. No duplicating schemas. Your backend code is the API. Here's what that actually looks like: js // server/router.ts export const appRouter = t.router { getUserById: t.procedure .input z.string .query { input } = { return db.user.findUnique { where: { id: input } } ; } , } ; // client/UserProfile.tsx const user = trpc.getUserById.useQuery "user 123" ; // user.data has the Prisma User type — you didn't write a single type annotation Look at what's not there. No URL paths, no HTTP methods, no duplicating your types on both sides. Change the backend return and your IDE finds every broken frontend reference before you hit save. V11 has been stable since early 2026. If you're still on v10, here's what you get: This is the biggest one. V11 requires React Query v5, which means Suspense support is baked in: function UserProfile { userId }: { userId: string } { const user = trpc.user.get.useSuspenseQuery { id: userId } ; return