Call of Duty Mobile
Unofficial CODM player profile lookups by name or UID
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.
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
}
}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
/user/nicknamePROBEDUnofficial CODM player profile lookups by name or UID
/userSingle user profile.
/user/1User details by ID (example: 1).
/user?limit=10Single user profile.
/user/search?q=testSearch by query parameters.
/user/Single user profile.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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.