Skip to main content
GET
/
v1
/
games
Get game index
curl --request GET \
  --url https://api.magne.app/v1/games \
  --header 'Authorization: Bearer <token>'
{
  "games": [
    {
      "exeName": "<string>",
      "appId": "<string>",
      "gameName": "<string>"
    }
  ],
  "nextCursor": 123,
  "hasMore": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

since
integer
cursor
integer
limit
integer

Response

Success

games
object[]
nextCursor
integer | null
hasMore
boolean