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

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

Dictum data via REST API

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
{
  "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

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

Request
const url = "https://api.fisenko.net/v1/quotes/en";
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.

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.

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 REQUIRED
CORS UNKNOWN
Category Personality
Difficulty Beginner
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →