Skip to main content
GET
/
v2
/
gift-cards
/
brands
List gift card brands
curl --request GET \
  --url https://api.gameboost.com/v2/gift-cards/brands \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of gift card brands

data
object[]