Documentation
Get Ban Words List

Get Ban Words Prefilter List

GET
https://api.imaginepro.ai/api/v1/discord/banwords

Banwords Prefilter List is a list of words that are pre-checked of the prompt before it is sent to Midjourney. This list is designed to prevent the generation of images that contain offensive or inappropriate content, and reduce the risk of your account being banned.

GET /api/v1/discord/banwords

Sample Response

{
  "list": [
    "ahegao",
    "pinup",
    "ballgag",
    "Playboy",
    "Bimbo",
    "pleasure",
    "bodily fluids"
  ]
}

Response Body

NameTypeDescription
ListarrayThe list of banned words

Examples

const axios = require("axios")
 
const config = {
  method: "get",
  url: "https://api.imaginepro.ai/api/v1/discord/banwords",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <your-token>",
  },
  data: {
    cmd: "fast",
  },
}
 
axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })