Remove common stopwords from text.
Stopwords are the high-frequency filler words ("the", "is", "and", etc.) that seldom change the meaning of a sentence. This helper strips the English stopword list from any sentence or paragraph so you can prepare content for indexing, keyword extraction, or quick copy analysis while leaving punctuation and spacing untouched.
GETPOST
/text/remove-stopwordsParameters
Query Parameters
| Name | Type | Description |
|---|---|---|
| text | string · required | Sentence or paragraph to clean. English stopwords such as "the", "and", "to" will be removed. |
| dryrun | boolean | When true, validates inputs and returns a dryrun response without transforming the text. |
All helper calls accept your Dataczar key via the ak query parameter. Need one? Create or copy a key on Dataczar Connect and drop it into each request.
Responses
Status 200
Stopwords removed successfully.
{
"ok": true,
"data": {
"text": "best day entire year!"
},
"meta": {
"service": "text/remove-stopwords",
"dryrun": false,
"request_id": "req_123"
}
}Examples
Request
"GET /text/remove-stopwords?text=This%20is%20the%20best%20day%20of%20the%20entire%20year!&ak=demo"Response
{
"ok": true,
"data": {
"text": "best day entire year!"
},
"meta": {
"dryrun": false
}
}Request
"GET /text/remove-stopwords?dryrun=1"Response
{
"ok": true,
"data": {
"operation": "remove-stopwords"
},
"meta": {
"dryrun": true
}
}Grab your Dataczar API key
Every helper runs with the same simple API key. Sign in (or create a free Dataczar account) at Dataczar Connect to issue keys in seconds, then drop the key into any `ak=` parameter and start shipping.
Tip: reuse the same key across these helpers, or rotate keys per project from the Connect dashboard.