LogoLogo
  • Knowledge
    • Getting started
    • Frequently Asked Questions
  • Endpoints
    • Definitions
    • Multiple cards
    • Individual cards
    • Featured set groups
    • Images
    • API metadata
  • Links
    • Grand Archive API
    • OpenAPI spec
    • Swagger
    • Index - Card database
Powered by GitBook
On this page
Export as PDF
  1. Endpoints

Featured set groups

PreviousIndividual cardsNextImages

Last updated 3 months ago

Get featured set groups.

get

This returns a list of featured set groups and the sets they contain.

Responses
200
A list of featured set groups.
application/json
get
GET /featured-sets HTTP/1.1
Host: api.gatcg.com
Accept: */*
200

A list of featured set groups.

[
  {
    "image": "text",
    "name": "Alchemical Revolution",
    "sets": [
      {
        "created_at": "2024-10-11T12:00:00+00:00",
        "id": "abcde12345",
        "language": "EN",
        "last_update": "2024-10-11T12:00:00+00:00",
        "name": "Mortal Ambition",
        "prefix": "AMB",
        "release_date": "2024-10-11T00:00:00"
      }
    ],
    "uuid": "abcde12345"
  }
]

Get featured set image.

get

This returns a featured set group's logo image.

Path parameters
filenamestringRequired

The filename to download.

Example: AMB.png
Responses
200
Image file.
image/png
Responsestring ยท binary[]

Image file.

404Error
application/json
get
GET /featured-sets/images/{filename} HTTP/1.1
Host: api.gatcg.com
Accept: */*
[
  "binary"
]
  • GETGet featured set groups.
  • GETGet featured set image.