惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
J
Java Code Geeks
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
B
Blog
A
About on SuperTechFans
有赞技术团队
有赞技术团队
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
N
Netflix TechBlog - Medium
C
Check Point Blog
Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 叶小钗
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Cara pakai API Claude & DeepSeek dari Indonesia — bayar R...
Nexotao · 2026-06-26 · via DEV Community

Nexotao

Disclosur: Ini dari tim Nexotao — saya bahas gateway kami sendiri di bawah. Saya jaga sebatas fakta yang bisa kamu cek sendiri: semua nama model, context window, dan harga ada di halaman pricing kami, dan saya kasih linknya.

Kalau kamu developer di Indonesia, kemungkinan besar pernah kejedot ini: API OpenAI dan Anthropic minta kartu kredit luar negeri. Nggak punya kartu, nggak bisa pakai API. Banyak dari kita mentok di situ.

Solusi yang jalan sekarang: gateway lokal yang nerima QRIS / Rupiah. Ini versi jujurnya — gimana cara kerjanya, berapa biayanya, dan apa yang belum bisa.

Dua model live, satu API yang kompatibel

Lewat Nexotao kamu pakai dua model teks:

  • Claude Opus 4.8 (claude-opus-4-8) — context window 350.000 token
  • DeepSeek-V4-Pro — context window 131.072 token

Itu angka context window yang dipublikasikan apa adanya — tanpa pemotongan diam-diam. Endpoint-nya kompatibel dengan OpenAI dan Anthropic, jadi biasanya cukup ganti base URL sama key-nya.

Format OpenAI:

from openai import OpenAI

client = OpenAI(base_url="https://api.nexotao.com/v1", api_key="sk-nexo-...")
resp = client.chat.completions.create(
    model="claude-opus-4-8",
    messages=[{"role": "user", "content": "Halo"}],
)
print(resp.choices[0].message.content)

Format Anthropic:

curl https://api.nexotao.com/v1/messages \
  -H "x-api-key: sk-nexo-..." \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{"model":"claude-opus-4-8","max_tokens":256,
       "messages":[{"role":"user","content":"Halo"}]}'

Cara bayarnya

  • Top up saldo Rupiah via QRIS, mulai Rp10.000. Tanpa kartu luar negeri.
  • Bayar sesuai pakai — dipotong per token. Tanpa langganan, dan saldo nggak hangus.
  • Tiap response ada header X-Cost-Rp, jadi kamu lihat biaya rupiah persis tiap request.

Berapa biayanya

Saat tulisan ini dibuat, Claude Opus 4.8 lewat gateway sekitar 70% lebih murah dari harga retail resmi (input) — tapi jangan percaya saya gitu aja. Halaman perbandingan harga menampilkan tarif per-token secara live dan menghitung "vs resmi" otomatis. Kalau nemu yang lebih murah, kabari kami.

Yang belum bisa (biar nggak kaget)

  • Nggak ada kredit gratis. Akun baru mulai dari nol — top up dulu baru bisa pakai.
  • Cuma dua model teks di atas. Belum ada image/transcribe, belum ada model lain.
  • Gateway ini kompatibel dengan Anthropic/OpenAI, bukan infrastruktur resmi mereka.

Intinya: kalau yang ngehalangin kamu dari API Claude/DeepSeek cuma kartu kredit luar negeri, bayar Rupiah via QRIS menghilangkan halangan itu. Cek sendiri angkanya di halaman harga.