Spelling Bee Generator API
Spelling Bee Generator creates word puzzles with 7 letters where players form words using a required center letter.
Live Test API
Try out the Spelling Bee Generator with a live request and see the response in real-time.
API Request
API Response
{
"status": "ok",
"error": null,
"data": {
"centerLetter": "K",
"outerLetters": [
"A",
"P",
"E",
"R",
"H",
"N"
],
"allLetters": [
"K",
"A",
"P",
"E",
"R",
"H",
"N"
],
"difficulty": "medium",
"wordCount": 57,
"pangramCount": 0,
"maxPoints": 201,
"words": [
{
"word": "HEARKENER",
"points": 9,
"isPangram": false
},
{
"word": "KNEEPAN",
"points": 7,
"isPangram": false
},
{
"word": "HEARKEN",
"points": 7,
"isPangram": false
},
{
"word": "NANKEEN",
"points": 7,
"isPangram": false
},
{
"word": "PRANKER",
"points": 7,
"isPangram": false
},
{
"word": "ENRANK",
"points": 6,
"isPangram": false
},
{
"word": "HARKEN",
"points": 6,
"isPangram": false
},
{
"word": "RANKER",
"points": 6,
"isPangram": false
},
{
"word": "KEEPER",
"points": 6,
"isPangram": false
},
{
"word": "KERANA",
"points": 6,
"isPangram": false
},
{
"word": "KEENER",
"points": 6,
"isPangram": false
},
{
"word": "HANKER",
"points": 6,
"isPangram": false
},
{
"word": "PARKEE",
"points": 6,
"isPangram": false
},
{
"word": "PARKER",
"points": 6,
"isPangram": false
},
{
"word": "KHENNA",
"points": 6,
"isPangram": false
},
{
"word": "KRAKEN",
"points": 6,
"isPangram": false
},
{
"word": "KANAKA",
"points": 6,
"isPangram": false
},
{
"word": "PARKA",
"points": 5,
"isPangram": false
},
{
"word": "REKNE",
"points": 5,
"isPangram": false
},
{
"word": "NERKA",
"points": 5,
"isPangram": false
},
{
"word": "RAKEE",
"points": 5,
"isPangram": false
},
{
"word": "AKENE",
"points": 5,
"isPangram": false
},
{
"word": "PEKAN",
"points": 5,
"isPangram": false
},
{
"word": "AKNEE",
"points": 5,
"isPangram": false
},
{
"word": "NAKER",
"points": 5,
"isPangram": false
},
{
"word": "ANKER",
"points": 5,
"isPangram": false
},
{
"word": "AREEK",
"points": 5,
"isPangram": false
},
{
"word": "RAKER",
"points": 5,
"isPangram": false
},
{
"word": "APEAK",
"points": 5,
"isPangram": false
},
{
"word": "PRANK",
"points": 5,
"isPangram": false
},
{
"word": "KNAP",
"points": 1,
"isPangram": false
},
{
"word": "PEAK",
"points": 1,
"isPangram": false
},
{
"word": "HAKE",
"points": 1,
"isPangram": false
},
{
"word": "KHAN",
"points": 1,
"isPangram": false
},
{
"word": "KEEN",
"points": 1,
"isPangram": false
},
{
"word": "ANKH",
"points": 1,
"isPangram": false
},
{
"word": "ERKE",
"points": 1,
"isPangram": false
},
{
"word": "HARK",
"points": 1,
"isPangram": false
},
{
"word": "PERK",
"points": 1,
"isPangram": false
},
{
"word": "KEEP",
"points": 1,
"isPangram": false
},
{
"word": "PEEK",
"points": 1,
"isPangram": false
},
{
"word": "KERN",
"points": 1,
"isPangram": false
},
{
"word": "KAKA",
"points": 1,
"isPangram": false
},
{
"word": "EEKE",
"points": 1,
"isPangram": false
},
{
"word": "RAKE",
"points": 1,
"isPangram": false
},
{
"word": "REEK",
"points": 1,
"isPangram": false
},
{
"word": "RANK",
"points": 1,
"isPangram": false
},
{
"word": "PARK",
"points": 1,
"isPangram": false
},
{
"word": "HANK",
"points": 1,
"isPangram": false
},
{
"word": "REAK",
"points": 1,
"isPangram": false
},
{
"word": "NAKE",
"points": 1,
"isPangram": false
},
{
"word": "HAAK",
"points": 1,
"isPangram": false
},
{
"word": "KNEE",
"points": 1,
"isPangram": false
},
{
"word": "KNAR",
"points": 1,
"isPangram": false
},
{
"word": "ARAK",
"points": 1,
"isPangram": false
},
{
"word": "PENK",
"points": 1,
"isPangram": false
},
{
"word": "KARN",
"points": 1,
"isPangram": false
}
],
"html": "<html><head><title>Spelling Bee</title><style>body {font-family: Arial, sans-serif; padding: 20px; max-width: 500px; margin: 0 auto; text-align: center;}h1 {color: #F9A825;}.honeycomb {display: flex; flex-wrap: wrap; justify-content: center; max-width: 200px; margin: 30px auto;}.hex {width: 60px; height: 52px; background: #E0E0E0; margin: 2px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);}.hex.center {background: #F9A825; color: white;}.stats {margin: 20px 0; font-size: 14px; color: #666;}.rules {text-align: left; background: #FFF8E1; padding: 15px; border-radius: 10px; margin-top: 20px;}.rules h3 {margin-top: 0; color: #F9A825;}.rules ul {margin: 0; padding-left: 20px;}</style></head><body><h1>Spelling Bee</h1><div class='honeycomb'><div class='hex center'>K</div><div class='hex'>A</div><div class='hex'>P</div><div class='hex'>E</div><div class='hex'>R</div><div class='hex'>H</div><div class='hex'>N</div></div><div class='stats'>57 words | 201 possible points</div><div class='rules'><h3>How to Play:</h3><ul><li>Create words using the letters shown</li><li>Words must contain the center letter (yellow)</li><li>Words must be at least 4 letters long</li><li>Letters can be used more than once</li><li>4-letter words = 1 point</li><li>Longer words = 1 point per letter</li><li>Pangrams (use all 7 letters) = +7 bonus points</li></ul></div></body></html>",
"image": {
"imageName": "2bfb9eee-8c2f-4ade-89b3-79ce11ac8d27.png",
"format": ".png",
"downloadURL": "https://storage.googleapis.com/apiverve.appspot.com/spellingbee/2bfb9eee-8c2f-4ade-89b3-79ce11ac8d27.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1764584717&Signature=p7u0EubqhX1CxpnYH5nVeHspUYVXlVisFbOG1CZ9IkH%2BvAxMXskOqy7zVRnf4kIitnIgxlO0ddrKgcdZFrw1bM%2F0y6FGNz7S8ArXFMtqCuTshQpNgRsk78LeZUewB%2Fiid2%2Foe91una6nFubxoKIEImZpyUZ07bb1cP8nETBK2xjPTcHJzFc07gyU3i1YHFYo06baVbCvTzGL9XcKnOSCRKxehwVKL9i5%2FFQeycytHOg9cgu4px9MKn%2FOVyami5XxXzKUZ%2FYOr30kolQd1FCoI9iYiIDCWhA3fcne8iZkUdUdFGxEX%2FGp0b2Jlo7GpBD1yQhJ%2BZL5fzuycCiz3td5xg%3D%3D",
"expires": 1764584717422
}
}
}Multiple Access Methods
REST API with multiple response formats, GraphQL, and MCP for AI agents
View all integrationsJSON
JavaScript Object Notation
XML
Extensible Markup Language
YAML
Human-readable data format
GraphQL
Query language for APIs
MCP
AI agent integration
Skip the HTTP calls. Use our official packages
Integrate faster with type-safe SDKs and comprehensive documentation
View all integrationsSimilar APIs
Explore other games APIs that complement the Spelling Bee Generator
Frequently Asked Questions
Get answers to common questions about the Spelling Bee Generator
How do I get started with this API?
Getting started is simple! Sign up for a free account, get your API key, and start making requests to our REST endpoints. We provide comprehensive documentation and code examples to help you integrate quickly.
What response formats are supported?
We support JSON (default), XML, and YAML response formats. Simply add the format parameter to your request with values 'json', 'xml', or 'yaml'. All formats contain the same comprehensive data.
Are there usage limits on the free tier?
The free tier includes 50 tokens per month with a rate limit of 10 requests per minute. Pro plans offer higher limits and enterprise plans provide unlimited usage with priority support.
How do I authenticate API requests?
Include your API key in the request header as X-API-Key: your_key_here or as a query parameter ?key=your_key. All requests are made over HTTPS for security.
Ready to integrate Spelling Bee Generator?
Join thousands of developers building amazing applications with reliable API data. Get started with your free API key today.