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

fetch('https://api.vambe.me/api/text-classifier/{type}/train', 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}/train"

response = requests.post(url)

print(response.text)

Path Parameters

type
string
required

Response

201 - undefined