How Many Rs?

The revolutionary new way to count letters in a word.

Tired of spending millions on Large Language Models to solve simple string queries? So were we.

Welcome to How Many Rs?, the industry leader in hyper-scalable, bespoke letter-counting solutions. We provide world-class accuracy with unparalleled performance. Find out how many times your favorite letter appears in your favorite word, instantly.


Use Our Enterprise-Grade API

For programmatic access, you can use our powerful API. Simply make a GET request to our count endpoint. It's that simple.

GET /count/{letter}/{word}/

Example: To count the letter 'a' in the word 'banana', you would make a request to:

GET /count/a/banana/

To receive a JSON response, include the `Accept` header with the value `application/json` in your request.

curl -H "Accept: application/json" http://localhost:8000/count/a/banana/

Example Response:

{
    "letter": "a",
    "word": "banana",
    "count": 3
}