GET
/
v1
/
location.getLocations
List available locations
curl --request GET \
  --url https://api.steamsets.com/v1/location.getLocations \
  --header 'Authorization: Bearer <token>'
[
  {
    "countries": [
      {
        "code": "<string>",
        "name": "<string>",
        "states": [
          {
            "cities": [
              {
                "name": "<string>"
              }
            ],
            "code": "<string>",
            "name": "<string>"
          }
        ]
      }
    ],
    "name": "Europe"
  }
]
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

object[] | null

OK

countries
object[] | null
required

The countries of the region

name
string
required

The name of the region

Examples:

"Europe"