Gemini API Free: How to Use It for Your Business Chatbot

Google's free-tier Gemini API is generous enough that most small businesses never outgrow it — here's the setup.

The WaSMS TeamSeptember 21, 20264 min read
Share

If you've ever priced out AI APIs for a chatbot, the sticker shock is usually the first thing that makes small businesses give up before they start. Google's Gemini API free tier is the reason it's the default AI engine inside WaSMS — it's generous enough that most small and mid-sized businesses genuinely never hit a paywall running a WhatsApp, SMS, or email assistant on it.

What Gemini API free actually includes

The free tier gives you API access to Google's Gemini models with no credit card required to get started. You get a real daily request allowance — high enough that a typical small business handling a few hundred customer conversations a day rarely comes close to the ceiling — plus access to the same underlying model quality Google uses in its own consumer products.

Google updates the exact numbers periodically, so rather than quote a figure that goes stale, check the current limits on Google's Gemini API pricing page before you plan around them. WaSMS also shows your live usage inside the admin, so you don't need to track it manually.

The free tier isn't a trial. It's a permanent pricing tier Google maintains for exactly this use case — most businesses on WaSMS stay on it indefinitely.

How WaSMS connects to Gemini

WaSMS is built around Gemini by default, which is part of why the whole AI integration layer is free forever. When you first enable AI on a channel, WaSMS gives you a shared starter key so you can test replies immediately — but that shared key is rate-limited across everyone using it, so it's meant for trying things out, not for running your real business traffic.

For anything beyond testing, you generate and set your own key. It takes about five minutes.

Setting your own API key

  1. Go to Google AI Studio and sign in with any Google account — no Cloud project or billing setup required for the free tier.
  2. Click Get API key, then Create API key, and copy the string it generates.
  3. In your WaSMS admin, open Settings → AI → Model Provider.
  4. Paste the key into the Gemini API Key field and save.

You can sanity-check a key outside WaSMS with a plain curl request before you paste it in:

curl -X POST "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=YOUR_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{"contents":[{"parts":[{"text":"Say hello in one sentence."}]}]}'

A valid key returns a normal JSON response with generated text. An error here means the key itself is the problem, not your WaSMS setup — worth ruling out first.

Once the key is saved, every conversation on that channel — WhatsApp, SMS, or email — starts using your own quota instead of the shared one, and starts being shaped by whatever you've fed it through training the AI on your business data.

Watching your quota

Even though the free tier is generous, it's worth keeping an eye on usage once a channel is getting real traffic. The WaSMS dashboard shows requests used today against your daily allowance, broken down by channel, so you can see at a glance whether WhatsApp or email is doing most of the AI work.

Sarah, who runs a boutique clothing shop, set a simple habit: check the usage graph once a week during her Monday admin routine. It's mostly there so a sudden spike — a bot loop, a bulk campaign that triggered AI replies to every recipient — gets caught early rather than discovered as a surprise.

When (if ever) to upgrade

Most WaSMS customers never need to. The cases where it's worth considering a paid tier from Google directly:

  • You're sending a genuinely high volume of AI-generated replies daily — well beyond typical small-business support volume
  • You need a specific premium model variant for a narrower reason (larger context window, faster latency guarantees)
  • You're building something beyond a support/sales assistant and want dedicated capacity

If none of that describes you, there's no reason to look elsewhere. Every article in this Learn section — from chatbot setup to custom AI for your business — assumes you're running on the free tier, because that's what the overwhelming majority of WaSMS businesses do.

What to read next: if you haven't set up your first automated reply yet, start with free AI chatbot for business. If you're evaluating Gemini against other tools, see ChatGPT alternative for business.

Frequently asked questions

No. Google AI Studio issues free-tier Gemini keys with just a regular Google account — you don't need to create a Cloud project, enable billing, or add a credit card.

Related articles