Dictum API
Overview
Dictum is a free, no-auth API that serves a curated collection of inspiring quotes from famous thinkers, authors, and leaders throughout history. You can request a random quote or browse by author. It requires no API key, making it perfect for a first API project.
Beginner Tip
The API base URL is https://api.fisenko.net/v1/quotes — call GET /quotes/en to get a random English quote. The "en" path segment selects the language.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Dictum",
"description": "API to get access to the collection of the most inspiring expressions of mankind",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
uuid Unique identifier for the quote. text The full quote text. author.name Full name of the person attributed with the quote. Implementation Example
const url = "https://github.com/fisenkodv/dictum";
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
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Advice Slip
⭐ Beginner's PickAdvice Slip is a free, no-auth API that returns a random piece of advice with each request.
Biriyani As A Service
Biriyani As A Service provides programmatic access to biriyani images placeholder via REST API.
FOAAS
FOAAS (F*** Off As A Service) is a humorous novelty API that returns comedic dismissal messages in various formats.
Forismatic
⭐ Beginner's PickForismatic is a free API that delivers short inspirational and motivational quotes from a curated collection.
icanhazdadjoke
⭐ Beginner's Pickicanhazdadjoke is a free API serving the internet's largest collection of dad jokes.