Keyzo Modz API

Free Fire access tokens, one API call away.

Sign in, generate an API key, and start building. Rate-limited, usage-tracked, and revocable any time from your dashboard.

Walkthrough

quickstart.sh
1# Bring a Free Fire account online with one call.
2# Authenticate with your KMA_live_ key.
3
4curl -X POST https://access-api.akiru.online/api/v1/account/online
5-H "Authorization: Bearer KMA_live_xxx"
6-H "Content-Type: application/json"
7-d '{"access_token":"<token>"}'
8
9# → { "ok": true, "data": { "status": "online", ... } }
10

Built for developers.

A predictable REST surface over the Free Fire access flow — with the operational guarantees you need to ship on top of it.

Rate-limited & usage-tracked

Every key is metered at 40 requests / 60 seconds via a sliding window. Overages return 429 with Retry-After. Usage is logged per request for your dashboard.

Rate Limit
✓ 40 req / 60s per key
429 Too Many Requests
↳ Retry-After: 12

Hashed API keys

Raw keys are shown exactly once at creation, then only their SHA-256 hash is stored. Revoke instantly from the dashboard — a revoked key fails auth on the next call.

Key Store
KMA_live_9f2a… (shown once)
stored: sha256 hash only
status: active → revoked

Hidden upstream proxy

Your calls hit a single choke point that talks to the game login server for you. The upstream host never appears in a response, bundle, or error — clients only see our API.

Response Envelope
{ "ok": true,
"data": { "status": "online" }
}