Skip to main content
GET
/
api
/
v1.1
/
operator-api
/
games
cURL
curl --request GET \
  --url https://api-staging.smatvirtual.com/api/v1/api/v1.1/operator-api/games \
  --header 'sv-api-key: <api-key>'
{
  "data": [
    {
      "name": "<string>",
      "releaseDate": "<string>",
      "baseLaunchUrl": "<string>",
      "category": 123,
      "id": "<string>",
      "imageUrl": "<string>"
    }
  ],
  "meta": {
    "currentPage": 1,
    "limit": 1,
    "nextPage": 1,
    "prevPage": 1,
    "totalElements": 1,
    "totalPage": 1
  }
}

Authorizations

sv-api-key
string
header
required

Query Parameters

limit
number
default:10

Number of items per page

Required range: x >= 1
Example:

10

page
number
default:1

Page number

Required range: x >= 1
Example:

1

sort
string

Field to sort by

Example:

"name"

order
enum<string>

Sort order

Available options:
ASC,
DESC
Example:

"ASC"

Search query

Example:

"example"

searchFields
string[]

Fields to search in

Example:
["name", "description"]

Response

200 - application/json

Get all operator available games

data
object[]
required
meta
object