Error

No input supplied.

Flying Ferret API Usage

Overview

This provides an api interface to use flying-ferret to transform input. It returns results as json. If you were expecting results, but you're seeing this page, there was something wrong with your call.

URL

http://flying-ferret.com/cgi-bin/api/v1/transform.cgi

Valid Methods

You can either use GET or POST to make calls to the URL

Input

Here are the parameters to use and what they do:

help
Output this page (all other input is ignored).
q
The input to transform.
input
Same as the 'q' parameter.
Will be ignored if the 'q' parameter is also supplied.

All other parameters are ignored.

Output

The output is a json with a single results array of strings.
Here is an example with a single result:

{
  "results" : [
    "tacos"
  ]
}

Here is an example with multiple results:

{
  "results" : [
    "5d6 = 23: 2, 5, 6, 6, 4",
    "5d8 = 30: 8, 4, 4, 6, 8",
    "grand total: 53"
  ]
}