Spelling Bee Generator API
Overview
To use Spelling Bee Generator, you need an API key. You can get one by creating a free account and visiting your dashboard.
GET Endpoint
https://api.apiverve.com/v1/spellingbeeExample
How to call the Spelling Bee Generator API in different programming languages.
curl -X GET \
"https://api.apiverve.com/v1/spellingbee?difficulty=medium&image=true" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/spellingbee?difficulty=medium&image=true', {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
response = requests.get('https://api.apiverve.com/v1/spellingbee?difficulty=medium&image=true', headers=headers)
data = response.json()
print(data)package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/spellingbee?difficulty=medium&image=true", nil)
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}{
"status": "ok",
"error": null,
"data": {
"centerLetter": "A",
"outerLetters": [
"C",
"H",
"E",
"J",
"O",
"D"
],
"allLetters": [
"A",
"C",
"H",
"E",
"J",
"O",
"D"
],
"difficulty": "medium",
"wordCount": 53,
"pangramCount": 0,
"maxPoints": 200,
"words": [
{
"word": "DEADHEADED",
"points": 10,
"isPangram": false
},
{
"word": "COHEADED",
"points": 8,
"isPangram": false
},
{
"word": "DEADHEAD",
"points": 8,
"isPangram": false
},
{
"word": "HEADACHE",
"points": 8,
"isPangram": false
},
{
"word": "ACCEDED",
"points": 7,
"isPangram": false
},
{
"word": "COACHED",
"points": 7,
"isPangram": false
},
{
"word": "ACCEDE",
"points": 6,
"isPangram": false
},
{
"word": "AHCHOO",
"points": 6,
"isPangram": false
},
{
"word": "CACHED",
"points": 6,
"isPangram": false
},
{
"word": "COHEAD",
"points": 6,
"isPangram": false
},
{
"word": "DADOED",
"points": 6,
"isPangram": false
},
{
"word": "DECADE",
"points": 6,
"isPangram": false
},
{
"word": "DOODAD",
"points": 6,
"isPangram": false
},
{
"word": "HADJEE",
"points": 6,
"isPangram": false
},
{
"word": "HEADED",
"points": 6,
"isPangram": false
},
{
"word": "AAHED",
"points": 5,
"isPangram": false
},
{
"word": "ACHED",
"points": 5,
"isPangram": false
},
{
"word": "ACHOO",
"points": 5,
"isPangram": false
},
{
"word": "ADDED",
"points": 5,
"isPangram": false
},
{
"word": "AHEAD",
"points": 5,
"isPangram": false
},
{
"word": "CACAO",
"points": 5,
"isPangram": false
},
{
"word": "CACHE",
"points": 5,
"isPangram": false
},
{
"word": "CAECA",
"points": 5,
"isPangram": false
},
{
"word": "COACH",
"points": 5,
"isPangram": false
},
{
"word": "COCOA",
"points": 5,
"isPangram": false
},
{
"word": "DACHA",
"points": 5,
"isPangram": false
},
{
"word": "HADED",
"points": 5,
"isPangram": false
},
{
"word": "HODAD",
"points": 5,
"isPangram": false
},
{
"word": "JADED",
"points": 5,
"isPangram": false
},
{
"word": "JEHAD",
"points": 5,
"isPangram": false
},
{
"word": "ACED",
"points": 1,
"isPangram": false
},
{
"word": "ACHE",
"points": 1,
"isPangram": false
},
{
"word": "AHED",
"points": 1,
"isPangram": false
},
{
"word": "AJEE",
"points": 1,
"isPangram": false
},
{
"word": "CACA",
"points": 1,
"isPangram": false
},
{
"word": "CADE",
"points": 1,
"isPangram": false
},
{
"word": "CECA",
"points": 1,
"isPangram": false
},
{
"word": "CHAD",
"points": 1,
"isPangram": false
},
{
"word": "CHAO",
"points": 1,
"isPangram": false
},
{
"word": "COCA",
"points": 1,
"isPangram": false
},
{
"word": "CODA",
"points": 1,
"isPangram": false
},
{
"word": "DACE",
"points": 1,
"isPangram": false
},
{
"word": "DADA",
"points": 1,
"isPangram": false
},
{
"word": "DADO",
"points": 1,
"isPangram": false
},
{
"word": "DEAD",
"points": 1,
"isPangram": false
},
{
"word": "EACH",
"points": 1,
"isPangram": false
},
{
"word": "HADE",
"points": 1,
"isPangram": false
},
{
"word": "HADJ",
"points": 1,
"isPangram": false
},
{
"word": "HAED",
"points": 1,
"isPangram": false
},
{
"word": "HAHA",
"points": 1,
"isPangram": false
},
{
"word": "HAJJ",
"points": 1,
"isPangram": false
},
{
"word": "HEAD",
"points": 1,
"isPangram": false
},
{
"word": "JADE",
"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'>A</div><div class='hex'>C</div><div class='hex'>H</div><div class='hex'>E</div><div class='hex'>J</div><div class='hex'>O</div><div class='hex'>D</div></div><div class='stats'>53 words | 200 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": "0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png",
"format": ".png",
"downloadURL": "https://storage.googleapis.com/apiverve/APIData/spellingbee/0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010561&Signature=cHvKHU7wb0RwJKVI6FGIS8%2B8%2BencmsoWEuH%2FT2cQsUjPTY%2FFLhSzipEyHex5HCEg5q8jEiRB3wZDXF9lyONQTVSNdZp0Xpm6Fw69tZZDvCeHePwa1v0h0rktZ6PLSbRswtr0vlHDZL3JPBl7i%2FsxM8QxTdGDOs7cyULy3d9qEyuPPIEDkOF1cnQce2qThIhZ%2BHieQNsBVX193NhyeCrgfRVQVPiFYo4ngSbOrMJKpVm2aSbtykG6Hyw%2B8RnQqkBqA5JB8XaB2ESBg0ZU8ldZUNoHd4cMoC2Oz4rI5FkLuQ2tzju9FVsxsCXiVvJCPd9jsWOlhQ7T1NVp%2FwV107k38w%3D%3D",
"expires": 1766010561052
}
}
}Authentication
The Spelling Bee Generator API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test the Spelling Bee Generator API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the Spelling Bee Generator API:
Generate Spelling Bee
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
difficulty | string | optional | Difficulty: easy, medium, hard (affects word count) | ||
imagePremium | boolean | optional | Set to true to generate a downloadable puzzle image | - |
Response
The Spelling Bee Generator API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.
Other Response Formats
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>ok</status>
<error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<data>
<centerLetter>A</centerLetter>
<outerLetters>
<outerLetter>C</outerLetter>
<outerLetter>H</outerLetter>
<outerLetter>E</outerLetter>
<outerLetter>J</outerLetter>
<outerLetter>O</outerLetter>
<outerLetter>D</outerLetter>
</outerLetters>
<allLetters>
<allLetter>A</allLetter>
<allLetter>C</allLetter>
<allLetter>H</allLetter>
<allLetter>E</allLetter>
<allLetter>J</allLetter>
<allLetter>O</allLetter>
<allLetter>D</allLetter>
</allLetters>
<difficulty>medium</difficulty>
<wordCount>53</wordCount>
<pangramCount>0</pangramCount>
<maxPoints>200</maxPoints>
<words>
<word>
<word>DEADHEADED</word>
<points>10</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COHEADED</word>
<points>8</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DEADHEAD</word>
<points>8</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HEADACHE</word>
<points>8</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACCEDED</word>
<points>7</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COACHED</word>
<points>7</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACCEDE</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>AHCHOO</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CACHED</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COHEAD</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DADOED</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DECADE</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DOODAD</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HADJEE</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HEADED</word>
<points>6</points>
<isPangram>false</isPangram>
</word>
<word>
<word>AAHED</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACHED</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACHOO</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ADDED</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>AHEAD</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CACAO</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CACHE</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CAECA</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COACH</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COCOA</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DACHA</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HADED</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HODAD</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>JADED</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>JEHAD</word>
<points>5</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACED</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>ACHE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>AHED</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>AJEE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CACA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CADE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CECA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CHAD</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CHAO</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>COCA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>CODA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DACE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DADA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DADO</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>DEAD</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>EACH</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HADE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HADJ</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HAED</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HAHA</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HAJJ</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>HEAD</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
<word>
<word>JADE</word>
<points>1</points>
<isPangram>false</isPangram>
</word>
</words>
<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'>A</div><div class='hex'>C</div><div class='hex'>H</div><div class='hex'>E</div><div class='hex'>J</div><div class='hex'>O</div><div class='hex'>D</div></div><div class='stats'>53 words | 200 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></html>
<image>
<imageName>0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png</imageName>
<format>.png</format>
<downloadURL>https://storage.googleapis.com/apiverve/APIData/spellingbee/0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010561&Signature=cHvKHU7wb0RwJKVI6FGIS8%2B8%2BencmsoWEuH%2FT2cQsUjPTY%2FFLhSzipEyHex5HCEg5q8jEiRB3wZDXF9lyONQTVSNdZp0Xpm6Fw69tZZDvCeHePwa1v0h0rktZ6PLSbRswtr0vlHDZL3JPBl7i%2FsxM8QxTdGDOs7cyULy3d9qEyuPPIEDkOF1cnQce2qThIhZ%2BHieQNsBVX193NhyeCrgfRVQVPiFYo4ngSbOrMJKpVm2aSbtykG6Hyw%2B8RnQqkBqA5JB8XaB2ESBg0ZU8ldZUNoHd4cMoC2Oz4rI5FkLuQ2tzju9FVsxsCXiVvJCPd9jsWOlhQ7T1NVp%2FwV107k38w%3D%3D</downloadURL>
<expires>1766010561052</expires>
</image>
</data>
</response>
status: ok
error: null
data:
centerLetter: A
outerLetters:
- C
- H
- E
- J
- O
- D
allLetters:
- A
- C
- H
- E
- J
- O
- D
difficulty: medium
wordCount: 53
pangramCount: 0
maxPoints: 200
words:
- word: DEADHEADED
points: 10
isPangram: false
- word: COHEADED
points: 8
isPangram: false
- word: DEADHEAD
points: 8
isPangram: false
- word: HEADACHE
points: 8
isPangram: false
- word: ACCEDED
points: 7
isPangram: false
- word: COACHED
points: 7
isPangram: false
- word: ACCEDE
points: 6
isPangram: false
- word: AHCHOO
points: 6
isPangram: false
- word: CACHED
points: 6
isPangram: false
- word: COHEAD
points: 6
isPangram: false
- word: DADOED
points: 6
isPangram: false
- word: DECADE
points: 6
isPangram: false
- word: DOODAD
points: 6
isPangram: false
- word: HADJEE
points: 6
isPangram: false
- word: HEADED
points: 6
isPangram: false
- word: AAHED
points: 5
isPangram: false
- word: ACHED
points: 5
isPangram: false
- word: ACHOO
points: 5
isPangram: false
- word: ADDED
points: 5
isPangram: false
- word: AHEAD
points: 5
isPangram: false
- word: CACAO
points: 5
isPangram: false
- word: CACHE
points: 5
isPangram: false
- word: CAECA
points: 5
isPangram: false
- word: COACH
points: 5
isPangram: false
- word: COCOA
points: 5
isPangram: false
- word: DACHA
points: 5
isPangram: false
- word: HADED
points: 5
isPangram: false
- word: HODAD
points: 5
isPangram: false
- word: JADED
points: 5
isPangram: false
- word: JEHAD
points: 5
isPangram: false
- word: ACED
points: 1
isPangram: false
- word: ACHE
points: 1
isPangram: false
- word: AHED
points: 1
isPangram: false
- word: AJEE
points: 1
isPangram: false
- word: CACA
points: 1
isPangram: false
- word: CADE
points: 1
isPangram: false
- word: CECA
points: 1
isPangram: false
- word: CHAD
points: 1
isPangram: false
- word: CHAO
points: 1
isPangram: false
- word: COCA
points: 1
isPangram: false
- word: CODA
points: 1
isPangram: false
- word: DACE
points: 1
isPangram: false
- word: DADA
points: 1
isPangram: false
- word: DADO
points: 1
isPangram: false
- word: DEAD
points: 1
isPangram: false
- word: EACH
points: 1
isPangram: false
- word: HADE
points: 1
isPangram: false
- word: HADJ
points: 1
isPangram: false
- word: HAED
points: 1
isPangram: false
- word: HAHA
points: 1
isPangram: false
- word: HAJJ
points: 1
isPangram: false
- word: HEAD
points: 1
isPangram: false
- word: JADE
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'>A</div><div class='hex'>C</div><div
class='hex'>H</div><div class='hex'>E</div><div class='hex'>J</div><div
class='hex'>O</div><div class='hex'>D</div></div><div class='stats'>53 words
| 200 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: 0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png
format: .png
downloadURL: >-
https://storage.googleapis.com/apiverve/APIData/spellingbee/0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010561&Signature=cHvKHU7wb0RwJKVI6FGIS8%2B8%2BencmsoWEuH%2FT2cQsUjPTY%2FFLhSzipEyHex5HCEg5q8jEiRB3wZDXF9lyONQTVSNdZp0Xpm6Fw69tZZDvCeHePwa1v0h0rktZ6PLSbRswtr0vlHDZL3JPBl7i%2FsxM8QxTdGDOs7cyULy3d9qEyuPPIEDkOF1cnQce2qThIhZ%2BHieQNsBVX193NhyeCrgfRVQVPiFYo4ngSbOrMJKpVm2aSbtykG6Hyw%2B8RnQqkBqA5JB8XaB2ESBg0ZU8ldZUNoHd4cMoC2Oz4rI5FkLuQ2tzju9FVsxsCXiVvJCPd9jsWOlhQ7T1NVp%2FwV107k38w%3D%3D
expires: 1766010561052
| key | value |
|---|---|
| centerLetter | A |
| outerLetters | [C,H,E,J,O,D] |
| allLetters | [A,C,H,E,J,O,D] |
| difficulty | medium |
| wordCount | 53 |
| pangramCount | 0 |
| maxPoints | 200 |
| words | [{word:DEADHEADED,points:10,isPangram:false},{word:COHEADED,points:8,isPangram:false},{word:DEADHEAD,points:8,isPangram:false},{word:HEADACHE,points:8,isPangram:false},{word:ACCEDED,points:7,isPangram:false},{word:COACHED,points:7,isPangram:false},{word:ACCEDE,points:6,isPangram:false},{word:AHCHOO,points:6,isPangram:false},{word:CACHED,points:6,isPangram:false},{word:COHEAD,points:6,isPangram:false},{word:DADOED,points:6,isPangram:false},{word:DECADE,points:6,isPangram:false},{word:DOODAD,points:6,isPangram:false},{word:HADJEE,points:6,isPangram:false},{word:HEADED,points:6,isPangram:false},{word:AAHED,points:5,isPangram:false},{word:ACHED,points:5,isPangram:false},{word:ACHOO,points:5,isPangram:false},{word:ADDED,points:5,isPangram:false},{word:AHEAD,points:5,isPangram:false},{word:CACAO,points:5,isPangram:false},{word:CACHE,points:5,isPangram:false},{word:CAECA,points:5,isPangram:false},{word:COACH,points:5,isPangram:false},{word:COCOA,points:5,isPangram:false},{word:DACHA,points:5,isPangram:false},{word:HADED,points:5,isPangram:false},{word:HODAD,points:5,isPangram:false},{word:JADED,points:5,isPangram:false},{word:JEHAD,points:5,isPangram:false},{word:ACED,points:1,isPangram:false},{word:ACHE,points:1,isPangram:false},{word:AHED,points:1,isPangram:false},{word:AJEE,points:1,isPangram:false},{word:CACA,points:1,isPangram:false},{word:CADE,points:1,isPangram:false},{word:CECA,points:1,isPangram:false},{word:CHAD,points:1,isPangram:false},{word:CHAO,points:1,isPangram:false},{word:COCA,points:1,isPangram:false},{word:CODA,points:1,isPangram:false},{word:DACE,points:1,isPangram:false},{word:DADA,points:1,isPangram:false},{word:DADO,points:1,isPangram:false},{word:DEAD,points:1,isPangram:false},{word:EACH,points:1,isPangram:false},{word:HADE,points:1,isPangram:false},{word:HADJ,points:1,isPangram:false},{word:HAED,points:1,isPangram:false},{word:HAHA,points:1,isPangram:false},{word:HAJJ,points:1,isPangram:false},{word:HEAD,points:1,isPangram:false},{word:JADE,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'>A</div><div class='hex'>C</div><div class='hex'>H</div><div class='hex'>E</div><div class='hex'>J</div><div class='hex'>O</div><div class='hex'>D</div></div><div class='stats'>53 words | 200 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:0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png,format:.png,downloadURL:https://storage.googleapis.com/apiverve/APIData/spellingbee/0f8f8f2c-ac7d-46f9-b5fc-e2d777117f13.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010561&Signature=cHvKHU7wb0RwJKVI6FGIS8%2B8%2BencmsoWEuH%2FT2cQsUjPTY%2FFLhSzipEyHex5HCEg5q8jEiRB3wZDXF9lyONQTVSNdZp0Xpm6Fw69tZZDvCeHePwa1v0h0rktZ6PLSbRswtr0vlHDZL3JPBl7i%2FsxM8QxTdGDOs7cyULy3d9qEyuPPIEDkOF1cnQce2qThIhZ%2BHieQNsBVX193NhyeCrgfRVQVPiFYo4ngSbOrMJKpVm2aSbtykG6Hyw%2B8RnQqkBqA5JB8XaB2ESBg0ZU8ldZUNoHd4cMoC2Oz4rI5FkLuQ2tzju9FVsxsCXiVvJCPd9jsWOlhQ7T1NVp%2FwV107k38w%3D%3D,expires:1766010561052} |
Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
error | string | null | Contains error message if status is "error", otherwise null | null |
data | object | null | Contains the API response data if successful, otherwise null | {...} |
Learn more about response formats →
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value | Description |
|---|---|---|---|
centerLetter | string | The required center letter for all puzzle words | |
outerLetters | array | Six letters surrounding the center letter in hexagon | |
allLetters | array | Complete set of seven letters (center plus outer) | |
difficulty | string | Puzzle difficulty level (easy, medium, or hard) | |
wordCountPremium | number | Total number of valid words in puzzle | |
pangramCountPremium | number | Number of pangrams (words using all letters) | |
maxPointsPremium | number | Maximum possible points achievable in puzzle | |
| [ ] Array items: | array[53] | Array of valid word objects with points and pangram status | |
â”” word | string | Valid word that can be formed using puzzle letters | |
â”” points | number | Points awarded for solving this word | |
â”” isPangram | boolean | Whether word uses all seven puzzle letters | |
htmlPremium | string | Fully formatted HTML version with visual puzzle display | |
image | object | - | |
â”” imageNamePremium | string | Unique filename of the generated puzzle image | |
â”” formatPremium | string | Image file format (e.g., .png or .jpg) | |
â”” downloadURLPremium | string | Direct URL to download the generated puzzle image | |
â”” expiresPremium | number | Unix timestamp when download URL expires |
Headers
Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →
GraphQL AccessALPHA
Access Spelling Bee Generator through GraphQL to combine it with other API calls in a single request. Query only the spelling bee generator data you need with precise field selection, and orchestrate complex data fetching workflows.
Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.
POST https://api.apiverve.com/v1/graphqlquery {
spellingbee(
input: {
difficulty: "medium"
image: true
}
) {
centerLetter
outerLetters
allLetters
difficulty
wordCount
pangramCount
maxPoints
words
html
image {
imageName
format
downloadURL
expires
}
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
CORS Support
The Spelling Bee Generator API accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →
Rate Limiting
Spelling Bee Generator requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →
Error Codes
The Spelling Bee Generator API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →
SDKs for Spelling Bee Generator
Official Spelling Bee Generator packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →
No-Code Integrations
Spelling Bee Generator works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →
Frequently Asked Questions
How do I get an API key for Spelling Bee Generator?
How many credits does Spelling Bee Generator cost?
Each successful Spelling Bee Generator API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful spelling bee generator lookups.
Can I use Spelling Bee Generator in production?
The free plan is for testing and development only. For production use of Spelling Bee Generator, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.
Can I use Spelling Bee Generator from a browser?
What happens if I exceed my Spelling Bee Generator credit limit?
When you reach your monthly credit limit, Spelling Bee Generator API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.








