api.souhait.me

自分用API置き場

POST /cjp

type RequestBody = {
  input: string
}

type ResponseBody = {
  output: string
}

POST /genhera

type RequestBody = {
  input: string
}

type ResponseBody = {
  output: string
}

POST /nomlish

type RequestBody = {
  input: string
  level?: 1 | 2 | 3 | 4
}

type ResponseBody = {
  output: string
}

POST /googleRetranslate

type RequestBody = {
  input: string
  target?: string
  source?: string
}

type ResponseBody = {
  output: string
}