SHIMONETA

FREEMIUM
By SAZABEE LLC | Updated a month ago | Entertainment
Health Check

N/A

README

What is SHIMONETA?

When you were teenager, you probably had this question.
"What do they say ‘Vulgar word’ in Japanese?"
This api connects a dictionary specializing sexually risky words. Using this api, you can avoid to publish a risky word without knowing what the word means in foreign countries.
For example, this event.

SHIMONETA tries to find your input word and returns the list of meanings and risky language in JSON format.

Currently, SHIMONETA supports English and Japanese. I am improving risky words dictionary in these languages.

HOW TO START

You need following information to use SHIMONETA.

ENDPOINT URL

HEADER

  • Content-Type’: ‘application/json
  • X-RapidAPI-Host’: ‘shimoneta3.p.rapidapi.com
  • X-RapidAPI-Key’: ‘YOU CAN GET IN RAPIDAPI CONSOLE

PARAMS

  • word’: ‘THE WORD YOU WANT TO CHECK

EXAMPLE

REQUEST

With above information, you can issue a GET request to the ENDPOINT URL.
This is a python sample code to check what ‘chimpo’ means.

	import requests

	url = "https://shimoneta3.p.rapidapi.com/"

	querystring = {"word":"chimpo"}

	headers = {
		"Content-Type": "application/json",
		"X-RapidAPI-Host": "shimoneta3.p.rapidapi.com",
		"X-RapidAPI-Key": "YOU CAN GET IN RAPIDAPI CONSOLE"
	}

	response = requests.request("GET", url, headers=headers, params=querystring)

	print(response.text)

RESPONSE

When you issue above the request, SHIMONETA returns response body in following format.

	{
		"word":"chimpo",
		"language":"Japanese",
		"English":[
			"penis",
			"phallus",
			"male genitalia",
			"dick",
			"cock"
		],
		"Japanese":[
			"陰茎",
			"チンポコ",
			"チンコ"
		]
	}

TERMS OF USE

https://shimoneta.info/terms-of-use.html

Followers: 0
Resources:
Product Website Terms of use
API Creator:
Rapid account: SAZABEE LLC
SAZABEE LLC
SAZABEEAPIS
Log In to Rate API
Rating: 5 - Votes: 1