Source

This page was generated with Wiki Builder. Do not change the format!

Info

Returns historical stat information about a given Destiny character.

Parameters

Path Parameters

Name Schema Required Description
membershipType BungieMembershipType:Enum Yes The type of account for which info will be extracted.
destinyMembershipId integer:int64 Yes Destiny membership ID.
characterId string Yes  

Query String Parameters

Name Schema Required Description
periodType PeriodType:Enum No Indicates a specific period type to return.
modes [#/components/schemas/Destiny.ActivityModeType][] No Game modes to return. Comma separated.
groups [#/components/schemas/Destiny.StatsGroupType][] No Group of stats to include, otherwise only general stats are returned. Comma separated.
monthstart string No First month to return when monthly stats are requested. Use the format YYYY-MM.
monthend string No Last month to return when monthly stats are requested. Use the format YYYY-MM.
daystart string No First day to return when daily stats are requested. Use the format YYYY-MM-DD.
dayend string No Last day to return when daily stats are requested. Use the format YYYY-MM-DD.

Example

Request

GET https://bungie.net/d1/Platform/Destiny/Stats/{membershipType}/{destinyMembershipId}/{characterId}/

Response

PlatformErrorCode: 200

{
    // Type: [#/components/schemas/Destiny.GetHistoricalStats]
    "Response": null,
    // Type: PlatformErrorCodes:Enum
    "ErrorCode": 0,
    // Type: integer:int32
    "ThrottleSeconds": 0,
    // Type: string
    "ErrorStatus": "",
    // Type: string
    "Message": "",
    // Type: Dictionary<string,string>
    "MessageData": {
        "{string}": ""
    },
    // Type: object
}

References