Skip to main content

GamesResponse

  • Array [
  • titlestringrequired

    Game's title in English

    Example: Catch 97
    idstringrequired

    Game's ID (internal)

    Example: sg_catch_97
    localesstring[]required

    List of supported locales in IETF BCP 47 format (ISO 639-1 language code with optional ISO 3166-1 country code), using underscore as separator.

    Example: ["en_us","es","pt_br"]
    currenciesstring[]required

    List of supported currency codes in ISO 4217 format

    Example: ["USD","EUR","GBP"]
    platformsPlatformType (string)[]required

    List of supported platform types

    Possible values: [desktop, mobile]

    Example: ["desktop","mobile"]
    images objectrequired

    Image URLs for the game

    baseURLstringrequired

    Image's base URL

    Example: https://cdn.swipegames.io/images/sg_catch_97
    squarestringrequired

    Path to square image. 1:1 aspect.

    Example: /square.png
    horizontalstringrequired

    Path to horizontal image. 4:3 aspect.

    Example: /horizontal.png
    widescreenstringrequired

    Path to widescreen image. 16:9 aspect.

    Example: /widescreen.png
    verticalstringrequired

    Path to vertical image. 3:4 aspect.

    Example: /vertical.png
    hasFreeSpinsbooleanrequired

    If game supports free spins

    Example: true
    rtpintegerrequired

    Game's RTP

    Example: 97
    betLines object[]

    List of bet lines supported for this game per currency. Available only if game has free spins. See more info in related section Free Rounds Bet Lines.

  • Array [
  • currencystringrequired

    Currency code in ISO4217

    Example: USD
    values object[]required

    List of bet line values (0-indexed array maps to 1-based bet lines).

  • Array [
  • maxBetstringrequired

    Maximum bet amount for this line (in currency units)

    Example: 1.00
    maxCoeffstringrequired

    Maximum multiplier applied to the bet

    Example: 5.00
  • ]
  • ]
  • ]
  • GamesResponse
    [
    {
    "title": "Catch 97",
    "id": "sg_catch_97",
    "locales": [
    "en_us",
    "es",
    "pt_br"
    ],
    "currencies": [
    "USD",
    "EUR",
    "GBP"
    ],
    "platforms": [
    "desktop",
    "mobile"
    ],
    "images": {
    "baseURL": "https://cdn.swipegames.io/images/sg_catch_97",
    "square": "/square.png",
    "horizontal": "/horizontal.png",
    "widescreen": "/widescreen.png",
    "vertical": "/vertical.png"
    },
    "hasFreeSpins": true,
    "rtp": 97,
    "betLines": [
    {
    "currency": "USD",
    "values": [
    {
    "maxBet": "1.00",
    "maxCoeff": "5.00"
    }
    ]
    }
    ]
    }
    ]