Overview
Word Cloud API generates word cloud images from text you provide, with options for colors, fonts, shape masks, and layout. You submit a list of words with weights and receive back a PNG or JSON with word positions. It is useful for visualizing survey results, article topics, or any frequency-based text data.
Beginner Tip
Register at https://wordcloudapi.com/ for a free API key. The simplest request just needs a comma-separated list of words — word frequency determines size automatically if you do not specify weights manually.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Word Cloud",
"description": "Easily create word clouds",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
image_url URL to the generated word cloud PNG image words List of words that were successfully placed in the cloud layout width Width of the generated image in pixels height Height of the generated image in pixels Implementation Example
const url = "https://wordcloudapi.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Améthyste
Améthyste provides programmatic access to generate images for discord users via REST API.
Cooper Hewitt
Cooper Hewitt provides programmatic access to smithsonian design museum via REST API.
Europeana
Europeana searches digitized artworks, books, music, and videos from 3,000+ European cultural institutions.
Harvard Art Museums
Harvard Art Museums exposes 250,000+ artworks, artists, and exhibition records with high-res images.
Iconfinder
Iconfinder (now served through the Freepik API) gives access to a massive library of icons and vector graphics you can search, filter by style, and download in various formats.