Developer resources
Blerbz provides developer resources for the NUCLEUZ news API, including a machine-readable OpenAPI description, the published @blerbz/sdk npm package, SDK source, agent-facing discovery files, and API documentation for ranked feeds, trending stories, BLERBZ100, documents, and sync.

The discovery report found weak developer-resource visibility. This page creates a single crawlable entry point for the API, SDK, OpenAPI, agent configs, and AI-readable site map.
Use the published TypeScript SDK package, the SDK source, or direct REST calls. API-key issuance is handled through the Blerbz developer flow.
// npm: https://www.npmjs.com/package/@blerbz/sdk
npm install @blerbz/sdk
import { BlerbzClient } from '@blerbz/sdk';
const client = new BlerbzClient({ apiKey: process.env.BLERBZ_API_KEY });
const topStories = await client.feeds.blerbz100({ limit: 20 });
for (const story of topStories.data) {
console.log(story.attributes.headline);
}Agents and documentation tools should treat /openapi.json as the canonical machine-readable description for public Blerbz API discovery.
Autonomous integrations should read these docs before retrying requests, creating jobs, handling streaming, or connecting through MCP.
BLERBZ is an AI news intelligence platform that tracks breaking AI stories, ranks trending topics, and provides analysis for professionals who need to follow the AI ecosystem in real time.