> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cromos.so/llms.txt
> Use this file to discover all available pages before exploring further.

# The series object

> The top level of the catalog.

A series groups the expansions released under one banner — Base, Sword & Shield, Scarlet &
Violet. It is the coarsest way to slice the catalog, and there are around twenty of them.

Ids are short and stable: `base`, `swsh`, `sv`. Fetching one returns its expansions inline,
ordered by release date, which makes a series the natural entry point for a browse.

<ResponseField name="logo" type="object | null">
  `{ low, high }`, or `null` where we hold no logo. The two may be the same URL.
</ResponseField>

## Example

The Base series actually carries seven expansions; trimmed to the first three below (still in
release-date order) to keep the example short.

```json theme={null}
{
  "data": {
    "id": "base",
    "name": "Base",
    "logo": {
      "low": "https://assets.cromos.so/series/base/logo/low.webp",
      "high": "https://assets.cromos.so/series/base/logo/high.webp"
    },
    "expansions": [
      {
        "id": "base1",
        "name": "Base Set",
        "logo": {
          "low": "https://assets.cromos.so/series/base/logo/low.webp",
          "high": "https://assets.cromos.so/series/base/logo/high.webp"
        },
        "symbol": null,
        "release_date": "1999-01-09",
        "card_count_total": 102
      },
      {
        "id": "base2",
        "name": "Jungle",
        "logo": {
          "low": "https://assets.cromos.so/expansions/base2/logo/low.webp",
          "high": "https://assets.cromos.so/expansions/base2/logo/high.webp"
        },
        "symbol": "https://assets.cromos.so/expansions/base2/symbol/image.webp",
        "release_date": "1999-06-16",
        "card_count_total": 64
      },
      {
        "id": "basep",
        "name": "Wizards Black Star Promos",
        "logo": {
          "low": "https://assets.cromos.so/expansions/basep/logo/low.webp",
          "high": "https://assets.cromos.so/expansions/basep/logo/high.webp"
        },
        "symbol": "https://assets.cromos.so/expansions/basep/symbol/image.webp",
        "release_date": "1999-07-01",
        "card_count_total": 53
      }
    ]
  },
  "error": null
}
```
