惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
美团技术团队
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
月光博客
月光博客
宝玉的分享
宝玉的分享
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
Vercel News
Vercel News
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Cosmic Uses REST (and Why That's the Right Call in 2026)
Tony Spiro · 2026-05-12 · via DEV Community

Why Cosmic Uses REST (and Why That's the Right Call in 2026)

Every few years, a new API paradigm gets declared the future. GraphQL had its moment. And it's genuinely good — for certain use cases. But "good for certain use cases" and "better default for most teams" are different claims. REST is still the right default, and in 2026 there's a new reason it matters: AI agents.

Here's an honest breakdown of the tradeoffs, and why Cosmic is REST-first by design.


The Honest GraphQL vs REST Comparison

Let's be direct about where each one wins.

Where GraphQL excels

  • Precisely shaped responses. GraphQL lets clients request exactly the fields they need. On mobile or low-bandwidth environments, this can meaningfully reduce payload size.
  • Single endpoint for complex graphs. When your data has deeply nested relationships and you need to traverse them in a single request, GraphQL's query model can simplify client code.
  • Rapid iteration on the client side. Frontend teams can adjust what data they fetch without waiting for a backend API change.
  • Type-safe schema introspection. Tooling like Apollo DevTools and GraphQL Codegen is genuinely excellent for teams that invest in the ecosystem.

Where REST wins

  • Simplicity. A REST endpoint is a URL. Any HTTP client — curl, fetch, Postman, a Python script, an AI agent — can consume it without understanding a schema or learning a query language.
  • Cacheability. HTTP caching is built for REST. GET requests to a stable URL can be cached at the CDN layer with no additional tooling. GraphQL's POST-by-default convention makes this harder.
  • Debuggability. When something breaks, a REST API gives you a URL you can open in a browser, paste into Postman, or log directly. GraphQL errors can be harder to trace without dedicated tooling.
  • Ecosystem breadth. REST is universal. Every language, every framework, every tool speaks REST.
  • Operational simplicity. No query parser, no resolver overhead, no N+1 query problems to solve. For most content APIs, the queries are simple enough that REST's structure is a feature, not a limitation.

The honest verdict on GraphQL

GraphQL makes sense for complex, client-driven data fetching scenarios — large product catalogs with dozens of relationship types, mobile apps with strict bandwidth constraints, teams with mature frontend infrastructure. It's a real tool for real problems.

But most content APIs are not that complex. A blog post has a title, a body, some metadata, and maybe a category. A landing page has sections and a hero image. REST handles these cases cleanly, with less overhead and more cacheability.


Why 2026 Changes the Calculation: AI Agents

Here's the new variable: AI agents are now part of most content workflows. And REST is dramatically better suited for agent consumption than GraphQL.

REST endpoints are trivially parseable by LLMs

A REST endpoint is a URL with predictable structure: GET /objects?type=blog-posts&limit=10. An AI agent can construct this URL from a natural language instruction without understanding a schema. The response is JSON — structured, flat, predictable.

GraphQL requires the agent to understand the schema, construct a valid query document, and handle the query syntax correctly. That's more tokens, more failure modes, and more prompting complexity.

Caching matters for agent workflows

AI agents often make repeated, similar requests — checking content status, fetching object counts, reading metadata. CDN-cached REST responses make this cheap and fast. GraphQL's POST-by-default pattern bypasses CDN caching entirely, meaning every agent request hits your origin.

Direct URL-based queries are auditable

When an AI agent fetches content via a REST endpoint, the request is a plain URL you can log, inspect, and replay. This matters for debugging agent workflows and for understanding what your agents are actually doing.

The emerging standard: REST + structured JSON

Tools like Model Context Protocol (MCP) and the major LLM provider SDKs are all built around REST + JSON. The ecosystem is converging on REST as the lingua franca for agent-to-service communication — because it's the most universally parseable format.


Cosmic's REST API in Practice

Cosmic's REST API is designed to be fast, predictable, and easy for both humans and AI agents to consume.

Sub-100ms response times globally via CDN caching. Whether it's a developer building a Next.js page or an AI agent fetching content to include in a generated article, the API is consistently fast.

Here's a simple example using the Cosmic TypeScript SDK — which wraps the REST API with full type safety:

import { createBucketClient } from '@cosmicjs/sdk'

const cosmic = createBucketClient({
  bucketSlug: process.env.COSMIC_BUCKET_SLUG as string,
  readKey: process.env.COSMIC_READ_KEY as string,
})

const { objects: posts } = await cosmic.objects
  .find({ type: 'blog-posts' })
  .props(['id', 'title', 'slug', 'metadata.teaser', 'created_at'])
  .sort('-created_at')
  .limit(10)

console.log(posts)

Enter fullscreen mode Exit fullscreen mode

The SDK compiles down to simple REST requests. No schema introspection. No query document compilation. Just a URL, a JSON response, and TypeScript types.

You can also call the REST API directly:

curl "https://api.cosmicjs.com/v3/buckets/my-bucket/objects?type=blog-posts&limit=10&read_key=YOUR_READ_KEY"

Enter fullscreen mode Exit fullscreen mode

That URL is cacheable at the CDN layer, inspectable in a browser, and consumable by any HTTP client — including an AI agent with no Cosmic-specific knowledge whatsoever.


The Decision in Plain Terms

For most content APIs, REST is faster to implement, easier to cache, simpler to debug, and better suited for the AI-agent workflows that are becoming standard in 2026.

GraphQL is the right call when you have complex, client-driven data fetching needs and a team ready to invest in the ecosystem. Those situations exist. But they're not the default.

Cosmic is REST-first because REST is the right default for content delivery — and because in a world where AI agents are increasingly reading and writing your content, the simplicity and cacheability of REST becomes even more valuable, not less.


Start Building with Cosmic

The Cosmic REST API is available on the free plan, no credit card required. Fetch your first objects in under five minutes.

Get started free →

Want to talk through your architecture? Book time with Tony, Cosmic's CEO.

Originally published on the Cosmic blog.