Skip to main content
GET
/
api
/
text-classifier
/
{type}
/
random
cURL
curl --request GET \
  --url https://api.vambe.me/api/text-classifier/{type}/random
const options = {method: 'GET'};

fetch('https://api.vambe.me/api/text-classifier/{type}/random', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/text-classifier/{type}/random"

response = requests.get(url)

print(response.text)

Path Parameters

type
string
required

Response

200 - undefined