Skip to main content
GET
/
api
/
public
/
v1
/
games
/
{game}
/
sideboard-guides
List public sideboard guides for a game
curl --request GET \
  --url https://api.flexslot.gg/api/public/v1/games/{game}/sideboard-guides \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Partner-Id: <api-key>' \
  --header 'X-Signature: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "author": {},
  "game": "<string>",
  "visibility": [
    "<string>"
  ],
  "deck_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "format": "<string>",
  "views": 123,
  "likes": 123,
  "hasMatchups": true,
  "thumbnail": "<string>",
  "editedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "sourceProvider": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.flexslot.gg/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Signature
string
header
required

HMAC-SHA256 over canonical request string. Format: v1.<unix_seconds>.<hex_hmac_sha256>.

X-Partner-Id
string
header
required

Partner identifier slug. Required alongside X-Signature for HMAC auth.

Authorization
string
header
required

User-issued personal access token (format: flx_pat_).

Path Parameters

game
string
required

Query Parameters

archetype_id
string

Case-insensitive substring filter on related matchup opponent_archetype.

author_id
string

Filter by guide author (firebase user id).

deck_id
string<uuid>

Filter to guides whose m2m membership includes this deck.

limit
integer

Page size (max 100, default 20).

page
integer

1-indexed page number.

sort
enum<string>

Sort key. Defaults to updated_at.

Available options:
created_at,
likes,
pageviews,
updated_at

Response

200 - application/json
id
string<uuid>
required
read-only
name
string
required
read-only
author
object
required
read-only
game
string
required
read-only
visibility
string[]
required
read-only
deck_id
string<uuid>
required
read-only
format
string
required
read-only
views
integer
required
read-only
likes
integer
required
read-only
hasMatchups
boolean
required
read-only
thumbnail
string | null
required
read-only
editedAt
string<date-time>
required
read-only
createdAt
string<date-time>
required
read-only
sourceProvider
string | null
required
read-only