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

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

response = requests.post(url)

print(response.text)

Path Parameters

type
string
required
id
string
required

Response

201 - undefined