Open Source Projects · head-to-head
Creative Commons Catalog vs Datamuse
Creative Commons's search catalog was handed off to WordPress.org and relaunched as Openverse; the old `api.creativecommons.engineering` host now 301-redirects to the current `api.openverse.org`. A live unauthenticated GET against `api.openverse.org/v1/images/` returned a 200 JSON result set with `Access-Control-Allow-Origin: *`, confirming keyless anonymous search still works today (rate-limited to 200 requests/day per IP), with an optional `/v1/auth_tokens/register/` OAuth2 client-registration endpoint (confirmed live, returning a 400 validation error rather than 404) for higher limits. The catalog itself and every indexed work are free to use under their respective open licenses.
Datamuse is a free word-finding query engine for autocomplete, rhyme, and meaning-based lookups; a live unauthenticated GET against `api.datamuse.com/words` returned a 200 JSON array with `Access-Control-Allow-Origin` echoing the request Origin plus `Access-Control-Allow-Credentials: true`, resolving cors "unknown" to "yes". Its own homepage now states that starting January 1, 2027 an API key will be required on every request (capped at 100,000/day per key) after more than a decade of fully free access — as of this check the API still works with no key at all.
| Creative Commons Catalog | Datamuse | |
|---|---|---|
| Authentication | None | None |
| Pricing | free | free |
| Formats | JSON | JSON |
| CORS | yes | yes |
| HTTPS | Yes | Yes |