Spelling Bee Generator API
Spelling Bee Generator creates word puzzles with 7 letters where players form words using a required center letter.
The Spelling Bee Generator API provides reliable and fast access to spelling bee generator data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
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/spellingbeeCode Examples
Here are examples of how to call the Spelling Bee Generator API in different programming languages:
curl -X GET \
"https://api.apiverve.com/v1/spellingbee?difficulty=medium" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/spellingbee?difficulty=medium', {
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', headers=headers)
data = response.json()
print(data)const https = require('https');
const url = require('url');
const options = {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
};
const req = https.request('https://api.apiverve.com/v1/spellingbee?difficulty=medium', options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => console.log(JSON.parse(data)));
});
req.end();<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/spellingbee?difficulty=medium');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: your_api_key_here',
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
?>package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/spellingbee?difficulty=medium", 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))
}require 'net/http'
require 'json'
uri = URI('https://api.apiverve.com/v1/spellingbee?difficulty=medium')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'
response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-API-Key", "your_api_key_here");
var response = await client.GetAsync("https://api.apiverve.com/v1/spellingbee?difficulty=medium");
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}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) |
Response
The Spelling Bee Generator API returns responses in JSON, XML, YAML, and CSV formats:
Example Responses
{
"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
}
}
}<?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 | |
â”” wordPremium | string | Valid word that can be formed using puzzle letters | |
â”” pointsPremium | number | Points awarded for solving this word | |
â”” isPangramPremium | 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
Required and optional headers for Spelling Bee Generator API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
X-API-Key | required | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
Accept | optional | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
User-Agent | optional | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
X-Request-ID | optional | req_123456789 | Custom request identifier for tracking and debugging requests |
Cache-Control | optional | no-cache | Control caching behavior for the request and response |
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"
}
) {
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 supports Cross-Origin Resource Sharing (CORS) with wildcard configuration, allowing you to call Spelling Bee Generator directly from browser-based applications without proxy servers.
| CORS Header | Value | Description |
|---|---|---|
Access-Control-Allow-Origin | * | Accepts requests from any origin |
Access-Control-Allow-Methods | * | Accepts any HTTP method |
Access-Control-Allow-Headers | * | Accepts any request headers |
Browser Usage: You can call Spelling Bee Generator directly from JavaScript running in the browser without encountering CORS errors. No proxy server or additional configuration needed.
Rate Limiting
Spelling Bee Generator API requests are subject to rate limiting based on your subscription plan. These limits ensure fair usage and maintain service quality for all Spelling Bee Generator users.
| Plan | Rate Limit | Description |
|---|---|---|
| Free | 5 requests/min | Hard rate limit enforced - exceeding will return 429 errors |
| Starter | No Limit | Production ready - standard traffic priority |
| Pro | No Limit | Production ready - preferred traffic priority |
| Mega | No Limit | Production ready - highest traffic priority |
Learn more about rate limiting →
Rate Limit Headers
When rate limits apply, each Spelling Bee Generator response includes headers to help you track your usage:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum number of requests allowed per time window |
X-RateLimit-Remaining | Number of requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the rate limit window resets |
Handling Rate Limits
Free Plan: When you exceed your rate limit, Spelling Bee Generator returns a 429 Too Many Requests status code. Your application should implement appropriate backoff logic to handle this gracefully.
Paid Plans: No rate limiting or throttling applied. All paid plans (Starter, Pro, Mega) are production-ready.
Best Practices for Spelling Bee Generator:
- Monitor the rate limit headers to track your Spelling Bee Generator usage (Free plan only)
- Cache spelling bee generator responses where appropriate to reduce API calls
- Upgrade to Pro or Mega for guaranteed no-throttle Spelling Bee Generator performance
Note: Spelling Bee Generator rate limits are separate from credit consumption. You may have credits remaining but still hit rate limits when using Spelling Bee Generator on Free tier.
Error Codes
The Spelling Bee Generator API uses standard HTTP status codes to indicate success or failure:
| Code | Message | Description | Solution |
|---|---|---|---|
200 | OK | Request successful, data returned | No action needed - request was successful |
400 | Bad Request | Invalid request parameters or malformed request | Check required parameters and ensure values match expected formats |
401 | Unauthorized | Missing or invalid API key | Include x-api-key header with valid API key from dashboard |
403 | Forbidden | API key lacks permission or insufficient credits | Check credit balance in dashboard or upgrade plan |
429 | Too Many Requests | Rate limit exceeded (Free: 5 req/min) | Implement request throttling or upgrade to paid plan |
500 | Internal Server Error | Server error occurred | Retry request after a few seconds, contact support if persists |
503 | Service Unavailable | API temporarily unavailable | Wait and retry, check status page for maintenance updates |
Learn more about error handling →
Need help? Contact support with your X-Request-ID for assistance.
Integrate Spelling Bee Generator with SDKs
Get started quickly with official Spelling Bee Generator SDKs for your preferred language. Each library handles authentication, request formatting, and error handling automatically.
Available for Node.js, Python, C#/.NET, and Android/Java. All SDKs are open source and regularly updated.
Integrate Spelling Bee Generator with No-Code API Tools
Connect the Spelling Bee Generator API to your favorite automation platform without writing code. Build workflows that leverage spelling bee generator data across thousands of apps.





All platforms use your same API key to access Spelling Bee Generator. Visit our integrations hub for step-by-step 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.



