Personality · head-to-head

Dictum vs Medium

Dictum

Dictum was a small quotes API whose GitHub README now states the project migrated to quoterism.com, a still-actively-run quotes-and-authors API with author images. A live GET against the real gateway, www.quoterism.com/api/quotes/random, returned a genuine 401 "API key required" JSON error with no Access-Control-Allow-Origin header, resolving cors unknown -> no and correcting auth None -> API Key in the same probe; a docsUrl was added for the live quoterism.com/developer page (found via the GitHub README's migration notice), distinct from the archived GitHub repo kept as url. The developer page asks only for optional donations to "keep the API free and running," with no paid tier found — pricingModel free.

Medium

Medium's REST API lets a registered integration read a user's profile and publish posts on their behalf, gated behind an OAuth-issued integration token (Medium stopped issuing new integration tokens in 2023, but existing tokens still authenticate). A live GET against the real gateway, api.medium.com/v1/me, returned a genuine 401 "An access token is required" JSON error while carrying Access-Control-Allow-Origin: *, resolving cors unknown -> yes and reconfirming OAuth auth in the same probe. No paid tier ever existed for the API itself — pricingModel free.

DictumMedium
AuthenticationAPI KeyOAuth
Pricingfreefree
FormatsJSONJSON
CORSnoyes
HTTPSYesYes

Medium supports CORS, while Dictum doesn't — pick Medium for direct browser calls.

More comparisons