Skip to main content
POST
/
v1
/
account.getMeta
Get account metadata
curl --request POST \
  --url https://api.steamsets.com/v1/account.getMeta \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": {
    "accountId": 1,
    "steamId64": "<string>"
  },
  "vanity": {
    "type": "steam",
    "value": "<string>"
  }
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountGetMetaResponseBody.json",
  "Steam Avatar hash of the account": "<string>",
  "description": "<string>",
  "steamId": "<string>",
  "title": "<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.

Body

application/json
id
object
vanity
object

Response

OK

Steam Avatar hash of the account
string
required
description
string
required
steamId
string
required

Use this + cdn.steamsets.com/og/account/steamId.png as url

title
string
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

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