Skip to main content

What are NeuralBox Tokens?

NeuralBox tokens are internal credits used across all AI models. They abstract away the pricing complexity of different providers — you don’t need to track per-model costs separately.
NeuralBox tokens are not the same as LLM context tokens. One NeuralBox token is a fixed billing unit, not an individual model token.

Token Costs by Model

Text Models

ModelTokens
gpt-5-nano1
claude-haiku-4.51
gemini-2.5-flash1
deepseek-v31
grok-4-fast1
gpt-52
deepseek-r11
gpt-5.24
claude-sonnet-4.54
gemini-3-pro3
claude-opus-4.56
gpt-5.2-pro39

Image Models

ModelTokens
photon-flash1
dall-e-35–13
gpt-image-1.51–21
flux-1.1-pro7
flux-kontext-pro7
sd-3.5-large12
midjourney-v614
midjourney-turbo28
recraft-v37
photon-13
nano-banana-pro7
nano-banana-pro-2k27

Video Models

ModelTokens
luma-ray2-flash42
kling-v2.144
kling-v2.1-pro88
minimax-video88
luma-ray2125
luma-ray2-1080p151
mj-video-480p84
luma-ray2-flash42
mj-video-720p269

Music

ModelTokens
musicgen9
elevenlabs-music58

TTS — Text to Speech

ModelTokens
minimax-tts1
openai-tts3
openai-tts-hd6
gpt-4o-mini-tts3
elevenlabs-flash18
elevenlabs-v235

STT — Speech to Text

ModelTokens
whisper2
gpt-4o-transcribe2
elevenlabs-scribe2

Image & Video Tools

ModelTokens
upscale1
face-swap1
remove-bg1
style-transfer1
colorize1
inpaint3
text-ocr1

Subscription Plans

PlanMonthly TokensPrice
Starter50 (one-time)0 ₽
Basic300890 ₽/mo
Pro7001,690 ₽/mo
VIP1,5002,990 ₽/mo
Elite3,0004,990 ₽/mo

Token Packages (one-time)

PackageTokensPrice
Start50249 ₽
Light100449 ₽
Standard200799 ₽
Advanced5001,790 ₽
Pro Pack1,0003,290 ₽
Business2,0005,990 ₽
Premium5,00013,990 ₽
Ultra10,00024,990 ₽

Checking Your Balance

curl https://neuralbox.top/api/v2/balance \
  -H "Authorization: Bearer nb_YOUR_API_KEY"
{
  "token_balance": 283,
  "plan": "vip",
  "plan_expires_at": "2026-04-08T00:00:00Z"
}

Dynamic Pricing

For media models, cost depends on parameters (size, quality, duration). Check the exact cost upfront:
POST /api/v2/models/dall-e-3/calculate-price
{"params": {"size": "1792x1024", "quality": "hd"}, "count": 1}
{
  "token_cost": 13,
  "min_token_cost": 5,
  "max_token_cost": 13,
  "pricing_type": "matrix"
}
If a generation fails, tokens are not deducted.