The Word Tools API exposes the same search engine that drives our free widgets as a raw JSON endpoint. You can call it from any language or platform and receive structured results without any widget markup.
Metered plans are charged per 10 000 API calls. A free evaluation tier provides 100 000 calls per month for testing and development. Paid plans include white‑label rights, meaning you can embed the API in your product without displaying any PuzzleCast branding.
The API program is currently in LAUNCH‑NOTIFY mode. We are finishing a production load‑proving phase for the underlying engine. Early access pricing will be offered to those who reserve a spot before the general release.
To request early access, email [email protected] with the subject line “API early access”. Include your intended use case and estimated monthly volume; we will confirm your early-access reservation and send pricing and credentials when the program opens.
GET request for anagrams of the letters “crane” using the American English dictionary:
GET /api/v3/search?SearchType=Anagram&Letters=crane&Dict=american&format=json
Successful response (pretty‑printed for readability):
{
"count": 5,
"results": [
{ "w": "crane", "l": 5, "s": ["c","r","a","n","e"] },
{ "w": "acern", "l": 5, "s": ["a","c","e","n","r"] },
{ "w": "cenar", "l": 5, "s": ["c","e","n","a","r"] },
{ "w": "nearc", "l": 5, "s": ["n","e","a","r","c"] },
{ "w": "racen", "l": 5, "s": ["r","a","c","e","n"] }
]
}
The count field indicates the total number of matches. Each result object returns the word (w), its length (l), and an array of sorted letters (s) for convenience.
Authorization: Bearer <token> header.For full documentation, including authentication, all search‑type parameters, and dictionary codes, visit the developer portal after you receive your access credentials.