POST
/
v1
/
badge.listTags
List badge tags
curl --request POST \
  --url https://api.steamsets.com/v1/badge.listTags \
  --header 'Authorization: Bearer <token>'
{
  "$schema": "https://api.steamsets.com/schemas/V1BadgeListTagsResponseBody.json",
  "colorTags": [
    {
      "group": "<string>",
      "groupOwner": true,
      "hex": "<string>",
      "hsl": "<string>",
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "designTags": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ]
}
This endpoint supports API key authentication for external integrations

API Access

This endpoint can be accessed using:
  • API Keys: For external applications and integrations
  • User Sessions: For web application access
See our API documentation for authentication details.

Authorizations

Authorization
string
header
required

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

Response

OK

colorTags
object[] | null
required

The available color tags

designTags
object[] | null
required

The available design tags

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://api.steamsets.com/schemas/V1BadgeListTagsResponseBody.json"