Run a Mod

Run the Tutti Frutti Mod

Generate a list of words related to a topic, starting with a specific letter.

POST
/mods/80baef3c-f909-412b-8e1a-b929322d8f5a/run
/mods/80baef3c-f909-412b-8e1a-b929322d8f5a/run

The Authorization access token

Authorization

X-API-Key<token>

API key. Example: "X-API-Key": "<apiKey>"

In: header

Authorization
Required
Bearer <token>

Session token. Example: "Authorization": "Bearer <token>"

In: header

Request Body

application/jsonRequired

parameters
Required
object

curl -X POST "https://api.endless.io/v1/mods/80baef3c-f909-412b-8e1a-b929322d8f5a/run" \
  -H "X-API-Key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "parameters": {
      "topic": "",
      "starting_letter": ""
    }
  }'

Success

{
  "type": "text",
  "content": "Lorem ipsum dolor sit amet"
}