curl -X POST "https://webtoolshop.com/api/meta-tag-generator" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"title": "My Page",
"description": "A great page",
"url": "https://example.com"
}'
Try itRuns on this page — no new tab
POST/api/readability-checker
Readability Checker
Parameter
Type
Description
text
string
required
Text to score
cURL
curl -X POST "https://webtoolshop.com/api/readability-checker" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"text": "The cat sat on the mat. It was a sunny day and the birds were singing."
}'
Try itRuns on this page — no new tab
POST/api/slug-generator
URL Slug Generator
Parameter
Type
Description
text
string
required
Title or phrase
separator
string
optional
Default "-"
lowercase
boolean
optional
Default true
cURL
curl -X POST "https://webtoolshop.com/api/slug-generator" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"text": "My First Blog Post! (2026)"
}'
Try itRuns on this page — no new tab
POST/api/word-counter
Word Counter
Parameter
Type
Description
text
string
required
The text to analyze
cURL
curl -X POST "https://webtoolshop.com/api/word-counter" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"text": "Hello world. This is a short sample paragraph."
}'