Strictly Better API

Strictly Better API — This API allows users to retrieve and search for obsole…

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

Strictly Better API exposes this API allows users to retrieve and search for obsolete cards in JSON format. Users can also find functional reprints and access various endpoints with a limit on the number of results per request. We verified a keyless GET endpoint returning JSON (Science & Math). Check the provider docs for rate limits and terms before production use.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
GET https://www.strictlybetter.eu/api/obsoletes

{
  "current_page": 1,
  "data": [
    {
      "id": 43576,
      "upvotes": 1,
      "downvotes": 2,
      "created_at": "2026-07-05 16:26:01",
      "updated_at": "2026-07-05 19:50:56",
      "inferiors": [
        {
          "name": "Arc Reactor",
          "multiverse_id": null,
          "functional_reprints_id": null
        }
      ],
      "superiors": [
        {
          "name": "Thran Dynamo",
          "multiverse_id": 627879,
          "functional_reprints_id": null
        }
      ],
      "labels": {
        "downvoted": false,
        "less_colors": false,
        "more_colors": false,
        "types_differ": false,
        "strictly_better": true,
        "subtypes_differ": false,
        "more_colored_mana": false,
        "supertypes_differ": false
      }
    },
    {
      "id": 43575,
      "upvotes": 1,
      "downvotes": 0,
      "created_at": "2026-07-05 15:34:08",
      "updated_at": "2026-07-05 15:34:08",
      "inferiors": [
        {
          "name": "Succumb to Temptation",
          "multiverse_id": 414403,
          "functional_reprints_id": null
        }
      ],
      "superiors": [
        {
          "name": "Visions of Villainy",
          "multiverse_id": null,
          "functional_reprints_id": null
        }
      ],
      "labels": {
        "downvoted": false,
        "less_colors": false,
        "more_colors": false,
        "types_differ": false,
        "strictly_better": true,
        "subtypes_differ": false,
        "more_colored_mana": false,
        "supertypes_differ": false
      }
    }
  ],
  "first_page_url": "https://www.strictlybetter.eu/api/obsoletes?page=1",
  "from": 1,
  "last_page": 523,
  "last_page_url": "https://www.strictlybetter.eu/api/obsoletes?page=523",
  "links": [
    {
      "url": null,
      "label": "« Previous",
      "active": false
    },
    {
      "url": "https://www.strictlybetter.eu/api/obsoletes?page=1",
      "label": "1",
      "active": true
    }
  ],
  "next_page_url": "https://www.strictlybetter.eu/api/obsoletes?page=2"
}
Call itcurl · fetch · python
curl "https://www.strictlybetter.eu/api/obsoletes"
const res = await fetch("https://www.strictlybetter.eu/api/obsoletes");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://www.strictlybetter.eu/api/obsoletes")
print(res.json())
Endpoints · 5On scheduleFULL DOCS ↗
On schedule — GET /api/obsoletes awaits first probe
GET/api/obsoletesPROBED

Strictly Better API — This API allows users to retrieve and search for obsole…

GET/api

Api — documented GET route.

GET/api/1

Api details by ID (example: 1).

GET/api?limit=10

Api — documented GET route.

GET/api/search?q=test

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

Strictly Better API: common questions

Is Strictly Better API free to use?

Yes — Strictly Better API is a free science & space API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Strictly Better API need an API key?

No — Strictly Better API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Strictly Better API from the browser?

Yes — Strictly Better API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is Strictly Better API up right now?

Strictly Better API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.