· Standard
llmstxt.info directory · Standard
PZERO
Verified listing
llms.txt reachable
AI Impact Score 80/100 · B
PZERO provides structured information for AI assistants via an llms.txt file. Industry: AI & Machine Learning. The website pzero.studio provides its llms.txt at https://pzero.studio/llms.txt. Listed since 27 August 2026.
llms.txt address
https://pzero.studio/llms.txt
Description
PZERO is a Frontier First AI Marketplace. Top up with USDC, then spend one AI Credit balance on chat, image, and video. Studio for humans. API and hosted MCP for agents. Hosted MCP: https://mcp.pzero.studio/mcp Docs: https://docs.pzero.studio/agents/mcp
Under GDPR Art. 17 you can request the deletion of your data. Report a legal violation (Art. 16 DSA) →
llms.txt — current content
Open ↗
# PZERO
> Frontier First AI Marketplace. Top up. Do your thing. Repeat. Text, image, and video inference on a two-sided DIEM marketplace.
> Cleared capacity trades between 1¢ and 80¢ on the dollar (minimum 20% off $1 DIEM face).
> USDC prepaid AI Credits on Base; cheapest eligible seller offer wins each completion.
> Supply is Venice-only (privacy-first upstream). Job correlation via X-Pzero-Request-Id / X-Pzero-Support-Reference — not seller self-attest for the model.
## Hosts
Fixed. Nothing to derive.
```
API https://api.pzero.studio
web app https://pzero.studio
docs https://docs.pzero.studio
```
Every example below uses those literally.
## Integrate (you already have an API key)
PZERO is OpenAI-compatible. Any OpenAI SDK or agent harness works with three values:
```
base_url: https://api.pzero.studio/v1
api_key: pzero_YOUR_KEY
model: claude-opus-4-8 (or any status:"live" id from GET /v1/models)
```
Two constraints most harnesses should know up front:
- Streaming is supported (SSE). Set `"stream": true` for token streaming; omit `stream` or use `"stream": false` for buffered JSON. Retries happen before any SSE bytes are written.
- The router may try another eligible supplier if the first cannot fulfill the request — up to five distinct supplier keys before surfacing an error (see docs: Marketplace → Clearing on `https://docs.pzero.studio/marketplace/clearing`).
- Buyer concurrency gate is currently disabled in code. When enabled, one in-flight comp
[…truncated]