Dictum API

⭐ Beginner's Pick Personality / No Auth Required Beginner HTTPS
Free to Use Varies (check documentation)

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

Dictum data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON 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

404 Not Found Requesting a language code or author slug that does not exist.
Use "en" as the language code; check available authors via GET /authors/en before filtering.
Empty response body The filter parameters returned no matching quotes.
Remove author or language filters and request a plain random quote first to verify connectivity.
SSL/TLS certificate error The unofficial host URL may differ from the GitHub docs.
Use https://api.fisenko.net/v1/quotes/en as the canonical endpoint.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 20/20
🔒 Security 15/15
🛠 Developer XP 15/20
✓ Reliability 7/15
Response Time 45ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Personality
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →