{"slug": "how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification", "title": "How I Accessed NVIDIA's AI API from Bangladesh Without Phone Verification", "summary": "A developer from Bangladesh, operating under the brand Alaminnna, discovered a method to access NVIDIA's AI API without phone verification, which is unavailable for Bangladesh. By exploiting the separation between the web UI and the underlying API, the developer used browser console commands to generate an API key, bypassing the phone number requirement. This workaround provides access to over 70 models, including several high-performing open-weight models.", "body_md": "No VPN. No fake number. Just a browser console and an API call.\n\nIf you are a developer in Bangladesh, you have probably hit the same wall I did.\n\nYou go to [build.nvidia.com](https://build.nvidia.com), excited to try out the latest models on the NVIDIA NGC API. You click **Generate API Key**. And then — a phone verification gate appears. You look for your country code. **Bangladesh is not on the list.**\n\nNVIDIA says: *\"If your location isn't listed, please check again soon.\"* I checked. It has been that way for a while.\n\nI am a student and independent builder from **Dhaka, Bangladesh**. I experiment with AI products and developer tools under the [Alaminnna](https://alaminnna.ami.bd) brand. I needed access to these models for a side project, not for enterprise production. Waiting for official support was not an option, so I looked for a legitimate workaround.\n\nHere is what I found.\n\nNVIDIA has two separate phone verification checkpoints:\n\nBoth ask for a phone number. Both block Bangladesh. But here is the critical insight: **the UI and the API are not the same system.** The web interface enforces phone checks. The API itself does not.\n\nThat gap is what makes this workaround possible.\n\nPersonal NVIDIA accounts trigger phone verification immediately. Organization accounts, however, do not — at least not during the initial signup flow.\n\nHere is what I did:\n\n**Phone verification bypassed for Gate 1.**\n\nNow comes Gate 2. If you try to generate an API key through the dashboard UI, it will ask for a phone number again. The **Skip** button does not work. Closing the modal brings it back.\n\nBut the API endpoint that actually creates the key does not check your phone number. It only checks your **session cookie**.\n\nOpen your browser's Developer Console (`F12`\n\n→ Console tab) and run:\n\n``` js\nconst r = await fetch('https://api.ngc.nvidia.com/user-context', \n  { credentials: 'include' });\nconst d = await r.json();\nconsole.log(d.orgName);\n```\n\nCopy the `orgName`\n\nvalue that prints out.\n\nNow run this in the same console:\n\n``` js\nconst resp = await fetch(\n  'https://api.ngc.nvidia.com/v3/orgs/' + d.orgName \n  + '/keys/type/AI_PLAYGROUNDS_KEY',\n  {\n    method: 'POST',\n    credentials: 'include',\n    headers: { 'content-type': 'application/json' },\n    body: JSON.stringify({\n      expiryDate: '2126-05-08T08:00:00Z',\n      name: 'api',\n      type: 'AI_PLAYGROUNDS_KEY',\n      policies: [{\n        product: 'nv-cloud-functions',\n        scopes: ['invoke_function'],\n        resources: [{ id: '*', type: 'account-functions' }]\n      }]\n    })\n  }\n);\nconst json = await resp.json();\nconsole.log('API Key:', json.apiKey.value);\n```\n\n**HTTP 200.** The API key is printed in your console.\n\nNo SMS. No OTP. No phone number required.\n\nNVIDIA's developers built the web UI with strict phone verification to reduce spam and abuse. That makes sense for a consumer-facing portal.\n\nHowever, the underlying NGC API is designed for enterprise and developer automation. It validates:\n\nIt does **not** validate whether a phone number was attached to the account. Why? Because phone verification is a UI-level onboarding filter, not an API-level authorization rule. A company with 50 developers does not want every individual employee's personal phone number tied to the API key. The org account is what matters.\n\nThat architectural separation is what creates this workaround.\n\nThis free tier gives you access to **70+ models**, including some of the most capable open-weight models available right now. Here are the ones I have tested personally:\n\n| Model | Context | Notes |\n|---|---|---|\n`thinkingmachines/inkling` |\n5M | Best-in-class free model. 77.6% SWE-bench, 89.2% GPQA. |\n`nvidia/nemotron-3-ultra-550b-a55b` |\n5M | Arena Elo 1458. Strong reasoning. 91.9% SWE-bench. |\n`stepfun-ai/step-3.7-flash` |\n— | Coding specialist. 76.5% SWE-bench. Terminal-friendly. |\n`minimaxai/minimax-m3` |\n5M | Multimodal (text + image + video input). Great for agents. |\n`mistralai/mistral-small-4-119b-2603` |\n5M | Multilingual. Fast inference. |\n`nvidia/llama-3.3-nemotron-super-49b-v1.5` |\n— | Arena Elo 1380. Efficient and fast. |\n`google/gemma-4-31b-it` |\n256K | Google's latest open model. |\n\n**Rate limit:** ~80 RPM. More than enough for prototyping and learning.\n\n**Important limitations:**\n\nOnce you have your key, test it immediately:\n\n```\ncurl -X POST https://integrate.api.nvidia.com/v1/chat/completions \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"thinkingmachines/inkling\",\"messages\":[{\"role\":\"user\",\"content\":\"hello\"}]}'\n```\n\nIf you get a valid JSON response, you are in.\n\nThis workaround is **100% legal**. I am not breaking any rules. I am not using a VPN to fake my location. I am not using a temporary phone number. I am simply using a different registration path (organization account) and calling the API directly instead of clicking through a UI that was designed with a phone gate.\n\nAs developers from Bangladesh, we often feel like certain tools are \"not for us.\" That is rarely true. Sometimes the path is just a little different.\n\nIf you found this useful, I share more experiments like this on my [website](https://alaminnna.ami.bd) and across my developer profiles. I am always building in public and learning through shipping.\n\n**Happy building.**\n\n*I am **Al A Min** (Alaminnna) — a student, entrepreneur, and independent builder from Dhaka, Bangladesh. I develop AI-powered software, full stack web applications, and open source tools. I write about AI development, JavaScript, TypeScript, React, Next.js, and the lessons I learn while building in public.*", "url": "https://wpnews.pro/news/how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification", "canonical_source": "https://dev.to/alaminnna/how-i-bypassed-nvidias-phone-verification-to-access-70-free-ai-models-from-bangladesh-24l0", "published_at": "2026-08-14 15:08:48+00:00", "updated_at": "2026-08-14 15:35:45.169328+00:00", "lang": "en", "topics": ["artificial-intelligence", "developer-tools", "ai-products"], "entities": ["NVIDIA", "Alaminnna", "Bangladesh", "build.nvidia.com", "NGC API", "thinkingmachines/inkling", "nvidia/nemotron-3-ultra-550b-a55b", "stepfun-ai/step-3.7-flash"], "alternates": {"html": "https://wpnews.pro/news/how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification", "markdown": "https://wpnews.pro/news/how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification.md", "text": "https://wpnews.pro/news/how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification.txt", "jsonld": "https://wpnews.pro/news/how-i-accessed-nvidia-s-ai-api-from-bangladesh-without-phone-verification.jsonld"}}