Sign In Get Started
Run 2,100 Vision Inferences: 120B Models for only 100 Tk.

Build with AI.
Pay in BDT.

CraftX gives students and developers instant access to powerful AI capabilities through a single API. Recharge your wallet via bKash, Nagad, or Rocket — and start building today.

৳0.001Per 1K Tokens
99.9%Uptime SLA
<200msAvg Latency
example.js
const response = await fetch("https://api.craftx.io/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${CRAFTX_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "cc-text-pro",
    messages: [{ role: "user", content: "Hello!" }],
  }),
});

const data = await response.json();
console.log(data.choices[0].message.content);
"Hello! How can I assist you today?"

From sign-up to first API call

No credit card required. No subscriptions. Just an API key and tokens.

01

Create Account

Register with your email and get instant access to the CraftX dashboard and your personal API key.

02

Recharge Wallet

Top up your BDT wallet instantly via bKash, Nagad, or Rocket. Verified and credited within hours.

03

Call the API

Use your API key to make requests to any available AI model. Pay only for what you use — per token.

Powerful AI models, BDT pricing

Choose from our curated selection of high-performance AI models.

Model Category Input (per 1K) Output (per 1K)
Loading API Pricing...

Pay in Taka. Zero complexity.

Recharge your wallet using Bangladesh's most trusted payment platforms.

No subscriptions. Only pay for what you use. Credit never expires.
Token-based billing. Costs are calculated per 1,000 tokens — transparent and predictable.
Fast top-up. Submit your transaction ID after payment and your wallet is credited within 2-5 Minutes.
Real-time deduction. Wallet balance is deducted automatically on each API call. No surprises.
Send Money → 01XXXXXXXXX
Send Money → 01XXXXXXXXX
Send Money → 01XXXXXXXXX

One endpoint. All models.

Drop-in compatible API. Switch from any standard AI provider in minutes.

chat.js
const res = await fetch("https://api.craftx.io/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "cc-text-pro",
    messages: [{
      role: "user",
      content: "Explain quantum computing in simple terms"
    }],
    max_tokens: 512
  })
});

const data = await res.json();
console.log(data.choices[0].message.content);
chat.py
import requests

response = requests.post(
    "https://api.craftx.io/v1/chat/completions",
    headers={
        "Authorization": f"Bearer {API_KEY}",
        "Content-Type": "application/json"
    },
    json={
        "model": "cc-text-pro",
        "messages": [{
            "role": "user",
            "content": "Explain quantum computing"
        }],
        "max_tokens": 512
    }
)
print(response.json()["choices"][0]["message"]["content"])
terminal
curl -X POST https://api.craftx.io/v1/chat/completions \
  -H "Authorization: Bearer $CRAFTX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cc-text-pro",
    "messages": [{
      "role": "user",
      "content": "Explain quantum computing"
    }],
    "max_tokens": 512
  }'
Response
200 OK ✓ 187ms
{
  "id": "chatcmpl-cc9xz...",
  "object": "chat.completion",
  "model": "cc-text-pro",
  "choices": [{
    "message": {
      "role": "assistant",
      "content": "Quantum computing harnesses..."
    },
    "finish_reason": "stop"
  }],
  "usage": {
    "prompt_tokens": 12,
    "completion_tokens": 143,
    "total_tokens": 155
  }
}

Everything you need to build with AI.

Real-time Usage Monitoring

Track every token, every call. Live dashboard with per-model breakdowns and cost analytics.

Instant API Key

Get your unique API key the moment you register. Regenerate it at any time from your dashboard.

BDT Wallet

Native Bangladeshi Taka billing. No foreign exchange headaches. Top up via local mobile banking.

Admin-Controlled Pricing

Pricing is set by the platform admin — ensuring fair, transparent rates for all users.

Secure & Private

All API traffic is encrypted. Rate limiting, key rotation, and audit logs built in by default.

Low Latency Proxy

Our infrastructure routes requests with minimal overhead — delivering responses at production speed.