Skip to main content
GET
/
v1
/
sets
/
{id}
Fetch a set by ID or abbreviation.
curl --request GET \
  --url https://api.elestrals.com/v1/sets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "st-53",
    "abbr": "BS1",
    "name": "Base",
    "type": "main",
    "series": {
      "id": "sr-3",
      "code": "KS01",
      "name": "Kickstarter"
    },
    "release_date": "2023-12-25",
    "prerelease_date": "2023-12-25",
    "card_count": 1,
    "images": {
      "banner_url": "<string>",
      "icon_url": "<string>",
      "logo_url": "<string>",
      "stamp_url": "<string>"
    },
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "request_id": "req_0123456789abcdef",
    "cached": true,
    "attribution_required": true
  }
}

Authorizations

Authorization
string
header
required

API key supplied as Authorization: Bearer <key>. Keys are minted in the developer portal. Rejected in query strings. See the Authentication guide.

Path Parameters

id
string
required

Set ID (st-...) or abbreviation (e.g. BS1, SD01).

Response

The requested set.

data
object
required
meta
object
required