Call of Duty Mobile

Unofficial CODM player profile lookups by name or UID

🎮 GamesNEWchecked 32 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

A reverse-engineered API for Call of Duty: Mobile that fetches public player profiles—level, rank, rating and country—by nickname or UID. A GET to /user/{name} returns JSON with no key. Unofficial and community-maintained, so expect occasional gaps.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · new
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://callofdutymobile.vercel.app/user/nickname

{
  "success": true,
  "nickname": "nickname",
  "countryCode": "CA",
  "shortId": "DXZ86B",
  "level": {
    "current": 47
  },
  "rank": {
    "class": 3,
    "multiplayerRank": "Rookie III",
    "rating": 401
  }
}
Call itcurl · fetch · python
curl "https://callofdutymobile.vercel.app/user/nickname"
const res = await fetch("https://callofdutymobile.vercel.app/user/nickname");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://callofdutymobile.vercel.app/user/nickname")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 6NewFULL DOCS ↗
Monitored path responding — GET /user/nicknamechecked 32 min ago
GET/user/nicknamePROBED

Unofficial CODM player profile lookups by name or UID

GET/user

Single user profile.

GET/user/1

User details by ID (example: 1).

GET/user?limit=10

Single user profile.

GET/user/search?q=test

Search by query parameters.

GET/user/

Single user profile.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Call of Duty Mobile: common questions

Is Call of Duty Mobile free to use?

Yes — Call of Duty Mobile is a free games API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Call of Duty Mobile need an API key?

No — Call of Duty Mobile needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Call of Duty Mobile from the browser?

Not directly — Call of Duty Mobile doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is Call of Duty Mobile up right now?

As of our last scheduled check, Call of Duty Mobile is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.