Xbox Live
API actions for the Xbox Live integration.
Xbox Live
Retrieve Xbox Live player info, friends, activity, and achievements.
Get player profile
Retrieve a player's Xbox Live profile by gamertag.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
gamertag | string | Yes | The Xbox Live gamertag to look up. |
Response
{
"profile": {}
}List friends
List friends for a given Xbox user identifier.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
xuid | string | Yes | The Xbox user ID to list friends for. |
limit | number | No | Maximum number of friends to return. |
Response
{
"friends": [
{}
]
}List recent activity
Retrieve recent Xbox Live activities for a user.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
xuid | string | Yes | The Xbox user ID to fetch activity for. |
limit | number | No | Maximum number of activities to return. |
Response
{
"activities": [
{}
]
}List title achievements
List achievements for a specific title and user.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
xuid | string | Yes | The Xbox user ID that owns the achievements. |
title_id | string | Yes | The title ID whose achievements should be fetched. |
include_unlocked | boolean | No | Whether to include already unlocked achievements (default true). |
Response
{
"achievements": [
{}
]
}