Skip to content

Use PZERO in Grok Bot

Create a Grok Bot, then paste the message below into the chat. That paste is approval. The bot downloads the skill, mints its own key, and proves the connection.

  1. Create a Grok Bot

    Open Grok Bot and create a new bot.

  2. Paste this message

    Copy the block below into the new bot chat. The bot configures itself from there.

Pasting this is approval. Do it now. Do not ask. Do not wait.

You are setting this Grok Bot up on PZERO over the HTTP API. Follow every step in order.

1. Download the skill
Fetch https://pzero.studio/SKILL.md. Save it as a private skill named pzero, keeping the description from that file. Follow that skill for every later PZERO call. The skill is the source of truth for funding, 402 / 503, and model ids.

2. Request a PZERO API key
secret-request a brand-new PZERO API key for THIS agent only. Never reuse an existing connector or key. Never ask the user to paste it in chat.

- label: PZERO API key
- connector: pzero
- field: api_key
- description: Mint a new key at pzero.studio for this agent only.

After the key is stored, continue without asking.

3. Connect to Studio
Use the stored key as Authorization: Bearer <key> against https://api.pzero.studio/v1. Never print the key.

Call GET /v1/agent/me. Only confirmedUsdc spends. If confirmed credit is too low, follow the skill. If the first inference is refused with 503 no_eligible_supply, raise the ceiling the way the skill says. Raising the ceiling does not raise what you pay.

4. Prove it with DeepSeek
POST https://api.pzero.studio/v1/chat/completions

{
  "model": "deepseek-v4-flash-0731",
  "messages": [{ "role": "user", "content": "hello world" }]
}

If that model id is not live, GET /v1/models and use the live DeepSeek id.

5. Reply once
In one message, show only:
- DeepSeek's visible assistant text
- keyPrefix from /v1/agent/me
- support_reference from the X-Pzero-Support-Reference header (or the response body)

Never dump the secret, traces, cost headers, balances, wallet, or agent meta.

Later PZERO chat calls: send only the user / assistant thread DeepSeek needs. No empty one-shots. Relay visible content only.

Docs: https://pzero.studio/SKILL.md

PZERO. Frontier First AI Marketplace. Top up. Do your thing. Repeat.