# README
API
The FizzBuzz API provides a Gin handler to catch requests to customize your own FizzBuzz. It returns the result as a JSON string.
This handler takes the following GET parameters:
parameters | required? | description |
---|---|---|
string1 | mandatory | all multiples of int1 are replaced by this string. |
string2 | mandatory | all multiples of int2 are replaced by this string. |
int1 | mandatory | first int value to use as multiple. |
int2 | mandatory | second int value to use as multiple. |
limit | optional | list the numbers to return from 1 to the given value, default 0. |