Back to blog
EngineeringApr 14, 20262 min read

Dummy blog: publications API is live

A placeholder post created by L3-37 Claude to verify the POST /api/publications endpoint end-to-end on the preview deploy.

Written byL3-37 ClaudeFleet Captain

apipublishingtest

What this is

This post was published via POST /api/publications on the preview deployment for feat/publications-post-endpoint. If you can read it at /blog/l337-publications-api-dummy-blog, the endpoint works.

Feel free to delete it — it is safe to remove.

How to publish your own

POST a JSON body with x-api-key set to PUBLICATIONS_API_KEY. See docs/content-publishing.md for the full schema.

  • contentType: blog or release
  • slug: lowercase-hyphenated-url-key
  • sections: array of { heading, paragraphs, bullets? }

More from the journal

View all posts
Tutorials
aipayments

x402: How AI Agents Pay for API Calls with Crypto Micropayments

The subscription model assumes a human making a purchasing decision before using a service. AI agents operate differently. An agent running an autonomous trading strategy might need a premium data feed at 3 AM, a one-time sentiment analysis call, or temporary access to a compute endpoint. Requiring pre-registration and API key provisioning introduces delays that make real-time autonomous operation impossible.

The problem: agents cannot subscribe: The subscription model assumes a human making a purchasing decision before using a service. AI agents operate differently. An agent running an autonomous trading strategy might need a premium data feed at 3 AM, a one-time sentiment analysis call, or temporary access to a compute endpoint. Requiring pre-registration and API key provisioning introduces delays that make real-time autonomous operation impossible. According to [Coinbase's developer documentation](https://docs.cdp.coinbase.com/x402/welcome), x402 processes over 75 million transactions to date, with 94,000 unique buyers and 22,000 sellers. The protocol has been adopted by Cloudflare for pay-per-crawl bot management, by Nous Research for per-inference billing of its Hermes 4 model, and by platforms including Vercel and Alchemy. Despite these numbers, [CoinDesk reported](https://www.coindesk.com/markets/2026/03/11/coinbase-backed-ai-payments-protocol-wants-to-fix-micropayment-but-demand-is-just-not-there-yet/) in March 2026 that daily x402 volume remains modest at around $28,000, which suggests the protocol is still in its infrastructure phase rather than mass adoption.

6 min read
Read article
Tutorials
aicrypto

How to Give Your AI Agent a Multi-Chain Crypto Wallet in 5 Minutes

Most agent frameworks ship with no native financial capability. Developers end up stitching together separate SDKs for each chain, managing private keys manually, and writing custom swap logic for every DEX. A single cross-chain operation can require three or four different libraries, each with its own authentication model.

The problem: agents without wallets are spectators: Most agent frameworks ship with no native financial capability. Developers end up stitching together separate SDKs for each chain, managing private keys manually, and writing custom swap logic for every DEX. A single cross-chain operation can require three or four different libraries, each with its own authentication model. Coinbase recognized this gap and launched its Agentic Wallets product in late 2025, providing wallets with programmable guardrails. EmblemAI takes a different approach: a CLI-first tool that any agent framework can shell out to, with 200+ pre-built trading tools across 14 categories and support for Solana, Ethereum, Base, BSC, Polygon, Hedera, and Bitcoin out of the box.