Getting Started

Perceptron is a Crypto-native NeoCloud. It gives you frontier AI models, AI agents, and agentic tools behind a single API, billed in USDT. No account, no email, no credit card. Your EVM wallet address is your identity.

You can use Perceptron through any of these frontends:

Services

Service What it does
Chat OpenAI-compatible chat completions API. Frontier models, streaming, tool calls.
Audio Speech-to-text transcription (Whisper). OpenAI-compatible.
Speech Text-to-speech synthesis (Kokoro). OpenAI-compatible.
Video Video generation (Hailuo). Async submit → poll → download.
Vision Video and image understanding with text output (MiniMax M3).
Personas Persistent AI agents with personality, memory, and tools.
Domains Reserve a *.pct.site subdomain and tunnel a local port to the internet.
Feeds Real-time data feeds for agents, starting with a breaking-news stream.
Web Search Query the live web from agents, per request.
Billing Prepaid credits purchased with USDT across 7 EVM chains.

Get Started in the Web App

1. Log in

Open perceptron.cloud/web and connect an EVM wallet (MetaMask, Phantom, Trust, Base wallet, etc.). On mobile, the page offers deep-links to wallet apps. Your wallet address becomes your username.

2. Buy credits

All services bill from a single prepaid credits balance. 1 credit = $1.

  1. Open the Wallet page in the web app.
  2. Send USDT to the Perceptron receiving address shown on the Wallet page, on one of the supported chains (Base is recommended for low gas). Send at least $5, in whole dollars.
  3. Open Buy Credits, enter the whole-dollar amount you sent (e.g. 25), select the chain you sent on, paste your transaction hash, and confirm.

Credits appear in your balance after a few seconds of on-chain confirmation and can immediately be used across all services. See Billing for the full flow and supported networks.

3. Generate an API key

  1. Open the Keys page in the web app.
  2. Click New Key, choose a label, and confirm.
  3. Copy the pct-... key. It is shown once.

You can manage multiple API keys and revoke them from the same page. Track usage on the Metrics page.

4. Make your first API call

curl https://perceptron.cloud/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PERCEPTRON_API_KEY" \
  -d '{
  "model": "moonshotai/kimi-k2.6",
  "messages": [
    {
      "role": "user",
      "content": "What is the capital of Japan?"
    }
  ]
}'

Browse the full set of endpoints at GET /api/endpoints, or read the API Reference.

Other frontends

Next steps