Play the Game • Use the API
Race against the clock in the addictive word-building game,
or build your own apps with the free SOWPODS API.
curl -X POST https://wordotron.com/api/v1/check-word \
-H "Content-Type: application/json" \
-d '{"word": "HELLO"}'
const response = await fetch('https://wordotron.com/api/v1/check-word', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ word: 'HELLO' })
});
const data = await response.json();
console.log(data.valid ? 'Valid word!' : 'Invalid word');
import requests
response = requests.post('https://wordotron.com/api/v1/check-word',
json={'word': 'HELLO'})
data = response.json()
print('Valid word!' if data['valid'] else 'Invalid word')
const axios = require('axios');
const response = await axios.post('https://wordotron.com/api/v1/check-word', {
word: 'HELLO'
});
console.log(response.data.valid ? 'Valid word!' : 'Invalid word');
✨ PLAY THE GAME
Wordotron.com features an addictive word-building game where you race against the clock to create valid words! Challenge yourself with multiple difficulty levels and compete for high scores.
• Fast-paced word-building gameplay
• Multiple difficulty levels
• High score leaderboards
• Educational and fun
• Free to play - no registration required
Build your own word games and applications using the free Wordotron API!
• SOWPODS Dictionary: Official Scrabble tournament word list (267,752 words)
• Instant Validation: Check words in milliseconds
• No Authentication: Completely free API access
• Case Insensitive: Works with any capitalization
• RESTful Design: Simple POST endpoint
• Versioned API: Current version is v1
• Response Header: X-API-Version: v1
⚙️ API ENDPOINT
• Current: POST https://wordotron.com/api/v1/check-word
• Legacy: POST https://wordotron.com/api/check-word (still functional for backwards compatibility)
• Content-Type: application/json (required)
• Max word length: 50 characters
• Request: {"word": "HELLO"}
• Response: {"valid": true} or {"valid": false}
• 200 OK: Successful validation
• 400 Bad Request: Missing word or exceeds 50 characters
• 405 Method Not Allowed: Non-POST request
• 415 Unsupported Media Type: Missing Content-Type header
✅ Word game development (Scrabble, crosswords, etc.)
✅ Vocabulary learning applications
✅ Writing assistance tools
✅ Chatbot word validation
✅ Puzzle generation systems
• Use client-side caching to improve performance
• Respect fair use policy - don't scrape the entire dictionary
• Use the versioned endpoint (v1) for new projects
• 267,752 valid words
• Official SOWPODS list (combines OSPD and OSW)
• Tournament-legal words
• Updated regularly