Dev Portal
Fast-Track Developer Infrastructure

Empower Your Applications with PixelRouter & AEO SDKs

Drop-in OpenAI-compatible gateway (https://api.pixeloffice.eu/v1), sub-35ms Fact Anchors, and Model Context Protocol monetization for Cursor, Python, and Node.js.

OpenAI Drop-In Gateway

PixelRouter — High-Speed OpenAI Gateway (/v1)

Get API Key & Cockpit

Universal OpenAI drop-in endpoint (https://api.pixeloffice.eu/v1) powered by the BLUN Intelligence Engine. Dynamically routes queries to DeepSeek V3, Qwen Thinking 27B, and Gemini 2.5 Pro while injecting sub-35ms Fact Anchors to eliminate AI hallucinations.

1-Click Cursor Setup
npx @pixeloffice-eu/router
OpenAI Base URL (Python / Node)
https://api.pixeloffice.eu/v1
Latency: <35ms Target
Token Savings: 85%–96% vs Direct OpenAI
Default Model: blun-auto
Brand Safety: Live Fact Anchoring

1. `@pixeloffice-eu/router`

Official Node.js & TypeScript SDK for PixelRouter with built-in auto-configuration CLI for Cursor IDE and Continue.dev.

npm install @pixeloffice-eu/router
npx @pixeloffice-eu/router auto-configures IDE endpoints in seconds.

2. `pixeloffice-router` (PyPI)

Python drop-in SDK for OpenAI client compatibility, LangChain, CrewAI, and custom AI agent workflows.

pip install pixeloffice-router
from openai import OpenAI pointing to https://api.pixeloffice.eu/v1.

3. `@pixeloffice-eu/aeo`

Zero-dependency AEO Telemetry Tag & First-1KB Fact Anchor injector for React, Next.js, and Vite web applications.

npm install @pixeloffice-eu/aeo
import { initAeo } from '@pixeloffice-eu/aeo';

4. `@pixeloffice-eu/mcp-monetize`

Micro-metering and HTTP 402 PayMeter Proxy for Model Context Protocol (MCP) servers. Monetize AI agent tool calls.

npm install @pixeloffice-eu/mcp-monetize
createMonetizedTool({ pricePerCall, handler })

5. Model Gardens Specifications

Pre-packaged agent tool specifications for OpenAI Custom GPTs, Claude Plugins, CrewAI, and LangChain.

Ready-to-import manifests for LLM agents.

6. `/llms.txt` Standard Endpoint

Compliance with the LLM site manifest standard. Delivers clean Markdown grounding data to Perplexity, Claude, and ChatGPT.

curl -i https://pixeloffice.eu/llms.txt
HTTP 200 OK text/plain structured markdown manifest.

Interactive Code Quickstart

Integrate PixelRouter and AEO SDKs into your development stack in under 60 seconds.

1-Click Terminal Setup: Run npx @pixeloffice-eu/router or manually configure in Cursor Settings > Models > Override OpenAI Base URL.
// Cursor IDE Settings Configuration (Settings > Models) { "cursor.general.openaiBaseUrl": "https://api.pixeloffice.eu/v1", "cursor.general.customModelName": "blun-auto", "cursor.general.openaiApiKey": "px_live_your_key" }
# 100% OpenAI Drop-In with Sub-35ms AEO Grounding & BLUN SmartRouter from openai import OpenAI client = OpenAI( base_url="https://api.pixeloffice.eu/v1", api_key="px_live_your_key" # or px_test_free ) res = client.chat.completions.create( model="blun-auto", # Auto-routes to DeepSeek, Qwen Thinking or Gemini Pro messages=[{"role": "user", "content": "Analyze compliance and generate clean TypeScript code"}] ) print(res.choices[0].message.content)
// Standard openai npm package pointing to PixelRouter import OpenAI from 'openai'; const openai = new OpenAI({ baseURL: 'https://api.pixeloffice.eu/v1', apiKey: 'px_live_your_key' }); const completion = await openai.chat.completions.create({ model: 'blun-auto', messages: [{ role: 'user', content: 'Generate responsive CSS grid layout' }] }); console.log(completion.choices[0].message.content);
// Install via NPM: npm install @pixeloffice-eu/mcp-monetize const { createMonetizedTool } = require('@pixeloffice-eu/mcp-monetize'); const tool = createMonetizedTool({ name: "seo_audit", pricePerCall: 0.001, developerApiKey: "px_dev_your_key", handler: async (args) => { return { success: true, score: 98 }; } });
// Install via NPM: npm install @pixeloffice-eu/aeo import { initAeo } from '@pixeloffice-eu/aeo'; initAeo({ domain: "yourdomain.com", autoInjectSchema: true, enableTelemetry: true });