Overview

Metaphorsum generates placeholder text built from metaphors — a creative alternative to standard Lorem Ipsum. Simply request a number of paragraphs or sentences and receive ready-to-paste filler text. No authentication or sign-up is required.

Beginner Tip

Specify both the number of paragraphs and sentences per paragraph in the URL path to control how much text you get — for example /paragraphs/2/5 returns 2 paragraphs of 5 sentences each.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

randomly generated data
customizable output format
word definitions
pronunciation
synonyms and antonyms
example sentences

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "make": "Toyota",
  "model": "Camry",
  "year": 2025,
  "engine": "2.5L 4-cylinder",
  "fuel_economy": {
    "city_mpg": 28,
    "highway_mpg": 39
  },
  "msrp": 28400
}

Field Reference

(plain text) The response is raw plain-text paragraphs, not JSON — use it directly as string content

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "http://metaphorpsum.com/paragraphs/2/5";
const response = await fetch(url);
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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

Empty or unexpected response Passing non-integer values in the URL path
Use whole numbers only, e.g. /paragraphs/3/4
Mixed content warning in browser The API serves over HTTP, not HTTPS
Fetch from a server-side script or proxy to avoid browser mixed-content blocks
Very slow response The server may take time to generate large amounts of text
Keep paragraph and sentence counts reasonable (under 10 each) for fast responses

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS NO
CORS UNKNOWN
Category Test Data
Difficulty Beginner
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →