Rockstar / R* Social Club “API” cheat sheet

In the guide below, you can find some useful information how to obtain public statistics of Social Club profiles, Rockstar’s official platform for GTA Online statistics. Either how many times you blew up a police helicopter or how often you died through a jerry can – it’s all tracked and viewable online on said platform.

Unfortunately, it’s only made for humans to look at in the browser and if people want to build a script to parse the information, it is rather tricky to access and parse the desired piece of information using cURL since the website is using lots of JavaScript and AJAX to reload stuff in the background.

In this guide I will try to describe and collect as many useful knowledge about the Social Club and it’s “API” as possible.

Disclaimer: Using this guide might be a violation of Rockstar’s Terms of Service. I take no responsibility for the way you use it. Any violation of the TOS resulting from using this cheat sheet is entirely the user’s responsibility.

Authentication procedure

If you take a look at the login / <form> element, you’ll see a hidden <input> tag called “__RequestVerificationToken”. This tag contains a token which is needed for the actual login request - otherwise Rockstar refuses the authentication, even with proper and valid credentials.

So initally, you need to make at least three requests to get your hands on the desired piece of information:

1. Get verficiation token

GET /

Search for the __RequestVerificationToken and store it’s value in a variable. Also make sure to store the cookies in a cookie jar.

Example request:

GET / HTTP/1.1
Host: socialclub.rockstargames.com

2. Login using verification token

POST /profile/signin

Login to Social Club with previously stored verification token. In case you receive 403 error, make sure it’s no noCAPTCHA interferences.

Example request:

POST /profile/signin HTTP/1.1
Host: socialclub.rockstargames.com
Form Parameters:
 
  • login – your Social Club account username
  • password – your Social Club account password
  • __RequestVerificationToken – the previously stored verification token

3. Parse actual data

Since the cookie jar now has a proper authentication cookie, you can start parsing the information you need.

Examples

This section can be used to gather known projects which makes use of this cheat sheet/API guide or simply some exemplary parsers. Let me know in case you want to add yours!

Parser

Projects

none yet

General

Overview

GET /games/gtav/career/overviewAjax?[nickname=(socialclub_name)&]slot=Freemode

Display general information of online character:

  • Rank
  • RP level
  • Total playtime
  • Current bank balance
  • Active crew
  • Competitive stats
  • Cash earned
  • Criminal records
  • Favorite weapon
  • Recent activities

Example request:

GET /games/gtav/career/overviewAjax?nickname=RestlessNarwhal&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
if(window.SCSettings) {
    window.SCSettings.platform = 12;
    window.SCSettings.urlformat = '/games/gtav/(platform)/career/overview';
    window.SCSettings.nickname = '';
}
</script>

<div id="page-header" class="clearfix">

<div id="freemodeRank" class="page-section clearfix">
    <div class="rankHex right-grad bronze">
        <h3 style="font-size:54px">283</h3>
        <p style="text-align:center;"></p>
    </div>
    <div class="rankXP">
        <div class="clearfix">
            <h3 class="left">7.7M<span> RP</span></h3>
        </div>
        <div class="rankBar">
            <h4>Play Time: 74d 13h 41m</h4>



            <div class="clearfix">

                    <div class="progress-bar">
                        <span style="width:20%">20%</span>
                    </div>

Query Parameters:
 
  • slot – needs to be Freeroam
  • nickname (optional) – target (Social Club name) to query defaults to logged in Social Club player

Player name to player ID

GET /member/(socialclub_username)

For some requests you need to know the player ID instead of the (human readable) player name.

Example request:

GET /member/restlessnarwhal HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<!doctype html>



<html class="no-js" lang="en">

<head data-template-set="html5-reset">

    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>Rockstar Games Social Club - Member : restlessnarwhal</title>
    <meta name="title" content="Rockstar Games Social Club Member : restlessnarwhal">
    <meta name="keywords" content="Rockstar Games, Social Club, Rockstar">
    <meta name="description" content="Rockstar Games Social Club">
    <meta name="google-site-verification" content="">
    <meta name="author" content="Rockstar North">
    <meta name="copyright" content="Rockstar Games 2017. All Rights Reserved.">
    <meta name="msapplication-config" content="none">


    <meta name="DC.title" content="Rockstar Games Social Club">
    <meta name="DC.subject" content="Rockstar Games, Social Club, Rockstar">
    <meta name="DC.creator" content="Rockstar North">


    <meta http-equiv="cleartype" content="on">


        <meta name="robots" content="all">

Parameters:
  • socialclub_username – target (Social Club name) to query

Note: Data is hidden somewhere in a <script> tag ("uid":36222077)

Profile feed

GET /reference/profilefeed/(socialclub_userid)

Extract the profile feed from a certain Social Club user. Make sure to find out the ID first.

Example request:

GET /reference/profilefeed/47990204 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "ugcType,accomplishmentDesc,platform,accomplishmentName",
  "count": 15,
  "activities": [
    {
      "metaId": 0,
      "numLikes": 0,
      "type": "MISSION_PUBLISHED",
      "actorMeta": {
        "url": "",
        "image": "GTAO/gtao.png",
        "type": "Person",
        "id": "47990204",
        "name": "RestlessNarwhal"
      },
      "comments": [],
      "activityId": "2960911887742244965",
      "time": 1482705466,
      "actorId": "47990204",
      "data": {
        "body": "",
        "toMeta": {
          "url": "",
          "image": "GTAO/gtao.png",
          "type": "Person",
          "id": "47990204",
          "name": "RestlessNarwhal"
        },
        "meta": {
          "name": "Empty lobby race",
Parameters:
  • socialclub_userid – target (Social Club ID) to query

Friends list

GET /friends/GetFriendsJson?nickname=(socialclub_name)&pageNumber=(page_number)

List all friends of a given Social Club username. Lists 12 entries per page.

Example request:

GET /friends/GetFriendsJson?nickname=restlessnarwhal&pageNumber=0 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "TotalCount": 12,
  "Count": 0,
  "ForRockstarId": 47990204,
  "ViewerRockstarId": 0,
  "PageIndex": 0,
  "PageSize": 12,
  "RockstarAccounts": [
    {
      "RockstarId": 37929140,
      "Name": "Bearhunter72",
      "AvatarUrl": "n/bearhunter72",
      "Relationship": "Friend",
      "AllowAddFriend": false,
      "MutualFriendCount": 0,
      "IsGamertagHidden": false,
      "PrimaryClan": {
        "Id": 7088603,
        "Name": "Hunter Crew Germany",
        "Tag": "Hunt",
        "IsOpenClan": false,
        "IsSystemClan": false,
        "IsPrivateClan": true,
        "IsFounderClan": false,
        "Color": "#1c2a99",
        "RankOrder": 0
      },
      "AllowAdd": false,
      "AllowDelete": false,
      "AllowBlock": false,
Query Parameters:
 
  • socialclub_name – target (Social Club username) to query
  • page_number – page number, starting with 0

Search for player

GET /friends/MemberSearch?searchTerm=(search_term)

Search for a specific player/username.

Example request:

GET /friends/MemberSearch?searchTerm=restless HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "HasMore": true,
  "MatchedUsers": [
    {
      "RockstarId": 26182414,
      "AvatarUrl": "n/jakelawrence",
      "DisplayName": "Jakelawrence",
      "UserName": "Narwhal Blood",
      "AllowAdd": true,
      "ServiceClass": "XBOX",
      "ServiceDisplayName": "Xbox Live Gamertag",
      "PrivacyLevel": "Everyone",
      "AllowDelete": false,
      "AllowCancel": false,
      "AllowMsg": true,
      "Relationship": "None"
    },
    {
      "RockstarId": 30584411,
      "AvatarUrl": "n/stewie200",
      "DisplayName": "stewie200",
      "UserName": "Narwhal Facial",
      "AllowAdd": true,
      "ServiceClass": "XBOX",
      "ServiceDisplayName": "Xbox Live Gamertag",
      "PrivacyLevel": "Everyone",
      "AllowDelete": false,
      "AllowCancel": false,
      "AllowMsg": true,
      "Relationship": "None"
Query Parameters:
 
  • search_term – the term you want to search for

Statistics

GET /games/gtav/StatsAjax?[nickname=(socialclub_username)&]slot=Freemode

More detailed statistics of general stuff such as:

  • Career
  • Skills
  • General
  • Crimes,
  • Vehicles
  • Cash
  • Combat
  • and weapons

Example request:

GET /games/gtav/StatsAjax?nickname=RestlessNarwhal&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
    if(window.SCSettings){
        window.SCSettings.platform = 12;
        window.SCSettings.urlformat = '/games/gtav/(platform)/career/stats?nickname=RestlessNarwhal';
        window.SCSettings.nickname = '';
        window.SCSettings.category = '';
    }
</script>

<div class="Freemode page-section bg-alpha clearfix">
    <div class="full-width bg-grad">
        <h2 class="categoryHeading">
            GTA Online Career Stats
        </h2>

    </div>
    <div class="gridRow">
        <div class="spanSingleCol">
            <ul id="statsCategories">

                <li id="career_tab"  class="active" >
                    <a class="changeCategory" href="#career" data-category="Career" data-toggle="tab">Career</a>
                    <input type="hidden" class="translate category-title" value="GTA Online Career Stats" />
                </li>

                <li id="skills_tab" >
                    <a class="changeCategory" href="#skills" data-category="Skills" data-toggle="tab">Skills</a>
                    <input type="hidden" class="translate category-title" value="GTA Online Skills Stats" />
                </li>

Query Parameters:
 
  • slot – needs to be Freeroam
  • socialclub_username (optional) – target (Social Club username) to query defaults to logged in Social Club player

Weapons

General statistics

GET /gtav/WeaponsAjax?[nickname=(socialclub_username)&]slot=Freemode

Contains information about kill death ratio, headshots, shots fired, drive-by kills and overall accuracy. For detailed information per weapon checkout the detailed information requests below.

Example request:

GET /gtav/WeaponsAjax HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
    var settings = window.SCSettings;
    if (settings != undefined) {
        settings.platform = 12;
        settings.urlformat = '/games/gtav/(platform)/career/weapons';
        settings.WeaponsJson = /*<sl:translate_json>*/{"sl_translate":"WeaponCollections,Name,SubNav,AmmoType,Desc,ConditionalReason","sl_variant":"Name:5,ConditionalReason:gtavdlcname","WeaponCollections":[{"Slot":0,"WeaponsCategories":[{"SubNav":"Pistol","Collection":[{"Conditional":false,"Show":true,"Name":"Pistol","Url":"pistol","Template":"gun","Mode":"mp","Id":"PISTOL","Bit":0,"WeaponAccuracy":40,"WeaponDamage":26,"WeaponFireRate":40,"WeaponRange":25,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_PI_Pistol.png","Type":"gun","Desc":"Standard handgun. A .45 caliber combat pistol with a magazine capacity of 12 rounds that can be extended to 16.","UnlockRank":"1","IsUnlocked":true,"IsPurchased":true,"Accuracy":"25","Deaths":1428,"EnemyKills":26,"Headshots":114,"HeldTime":24788497,"Kills":242,"Shots":5990,"Hits":1472,"KillDeathRatio":"0.17","Attachments":[{"Name":"Default Clip","Id":"W_PI_PISTOL_MAG1","Image":"W_PI_Pistol_Mag1","UnlockRank":1,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_PISTOL_MAG2","Image":"W_PI_Pistol_Mag2","UnlockRank":3,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_PI_PISTOL_FLASH","Image":"W_PI_Pistol_Flash","UnlockRank":4,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_PISTOL_SUPP","Image":"W_PI_Pistol_Supp","UnlockRank":5,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"CombatPistol","Collection":[{"Conditional":false,"Show":true,"Name":"Combat Pistol","Url":"combat-pistol","Template":"gun","Mode":"mp","Id":"COMBATPISTOL","Bit":0,"WeaponAccuracy":50,"WeaponDamage":27,"WeaponFireRate":40,"WeaponRange":30,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_PI_CombatPistol.png","Type":"gun","Desc":"A compact, lightweight semi-automatic pistol designed for law enforcement and personal defense use. 12-round magazine with option to extend to 16 rounds.","UnlockRank":"9","IsUnlocked":true,"IsPurchased":true,"Accuracy":"21","Deaths":18,"EnemyKills":8,"Headshots":19,"HeldTime":4179260,"Kills":38,"Shots":1712,"Hits":368,"KillDeathRatio":"2.11","Attachments":[{"Name":"Default Clip","Id":"W_PI_COMBATPISTOL_MAG1","Image":"W_PI_CombatPistol_Mag1","UnlockRank":9,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_COMBATPISTOL_MAG2","Image":"W_PI_CombatPistol_Mag2","UnlockRank":10,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_PI_COMBATPISTOL_FLASH","Image":"W_PI_CombatPistol_Flash","UnlockRank":11,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_COMBATPISTOL_SUPP","Image":"W_PI_CombatPistol_Supp","UnlockRank":12,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"APPistol","Collection":[{"Conditional":false,"Show":true,"Name":"AP Pistol","Url":"ap-pistol","Template":"gun","Mode":"mp","Id":"APPISTOL","Bit":0,"WeaponAccuracy":45,"WeaponDamage":28,"WeaponFireRate":80,"WeaponRange":30,"AmmoType":"Shots Fired","Ammo":20,"Image":"W_PI_APPistol.png","Type":"gun","Desc":"High-penetration, fully-automatic pistol. Holds 18 rounds in magazine with option to extend to 36 rounds.","UnlockRank":"33","IsUnlocked":true,"IsPurchased":true,"Accuracy":"24","Deaths":168,"EnemyKills":162,"Headshots":443,"HeldTime":33911146,"Kills":1160,"Shots":94508,"Hits":23148,"KillDeathRatio":"6.90","Attachments":[{"Name":"Default Clip","Id":"W_PI_APPISTOL_MAG1","Image":"W_PI_APPistol_Mag1","UnlockRank":33,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_APPISTOL_MAG2","Image":"W_PI_APPistol_Mag2","UnlockRank":34,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_PI_APPISTOL_FLASH","Image":"W_PI_APPistol_Flash","UnlockRank":35,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_APPISTOL_SUPP","Image":"W_PI_APPistol_Supp","UnlockRank":36,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"Pistol50","Collection":[{"Conditional":false,"Show":true,"Name":"Pistol .50","Url":"pistol-50","Template":"gun","Mode":"mp","Id":"PISTOL50","Bit":0,"WeaponAccuracy":55,"WeaponDamage":51,"WeaponFireRate":40,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":8,"Image":"W_PI_Pistol50.png","Type":"gun","Desc":"High-impact pistol that delivers immense power but with extremely strong recoil. Holds 9 rounds in magazine.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"26","Deaths":12,"EnemyKills":2,"Headshots":7,"HeldTime":1929883,"Kills":27,"Shots":645,"Hits":168,"KillDeathRatio":"2.25","Attachments":[{"Name":"Default Clip","Id":"W_PI_PISTOL50_MAG1","Image":"W_PI_Pistol50_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_PISTOL50_MAG2","Image":"W_PI_Pistol50_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_PI_PISTOL50_FLASH","Image":"W_PI_Pistol50_Flash","UnlockRank":0,"IsUnlocked":false,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_PISTOL50_SUPP","Image":"W_PI_Pistol50_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"SNSPistol","Collection":[{"Conditional":true,"ConditionalReason":"Beach Bum Update","Show":true,"Name":"SNS Pistol","Url":"sns-pistol","Template":"gun","Mode":"mp","Id":"SNSPISTOL","Bit":0,"WeaponAccuracy":40,"WeaponDamage":30,"WeaponFireRate":40,"WeaponRange":20,"AmmoType":"Shots Fired","Ammo":3,"Image":"W_PI_SNSPistol.png","Type":"gun","Desc":"Like condoms or hairspray, this fits in your pocket for a night on the town. The price of a bottle at a club, it's half as accurate as a champagne cork, and twice as deadly.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"28","Deaths":6,"EnemyKills":1,"Headshots":16,"HeldTime":3400322,"Kills":38,"Shots":1254,"Hits":347,"KillDeathRatio":"6.33","Attachments":[{"Name":"Default Clip","Id":"W_PI_SNSPISTOL_MAG1","Image":"W_PI_SNSPistol_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_SNSPISTOL_MAG2","Image":"W_PI_SNSPistol_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"HeavyPistol","Collection":[{"Conditional":true,"ConditionalReason":"Business Update","Show":true,"Name":"Heavy Pistol","Url":"heavy-pistol","Template":"gun","Mode":"mp","Id":"HEAVYPISTOL","Bit":0,"WeaponAccuracy":50,"WeaponDamage":40,"WeaponFireRate":40,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":20,"Image":"W_PI_HeavyPistol.png","Type":"gun","Desc":"The heavyweight champion of the magazine fed, semi-automatic handgun world. Delivers accuracy and a serious forearm workout every time. Part of the Business Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"24","Deaths":23,"EnemyKills":13,"Headshots":18,"HeldTime":3831701,"Kills":53,"Shots":1404,"Hits":336,"KillDeathRatio":"2.30","Attachments":[{"Name":"Default Clip","Id":"W_PI_HEAVYPISTOL_MAG1","Image":"W_PI_HeavyPistol_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_HEAVYPISTOL_MAG2","Image":"W_PI_HeavyPistol_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_PI_HEAVYPISTOL_FLASH","Image":"W_PI_HeavyPistol_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_HEAVYPISTOL_SUPP","Image":"W_PI_HeavyPistol_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"VintagePistol","Collection":[{"Conditional":true,"ConditionalReason":"I'm Not a Hipster Update","Show":true,"Name":"Vintage Pistol","Url":"vintage-pistol","Template":"gun","Mode":"mp","Id":"VINTAGEPISTOL","Bit":0,"WeaponAccuracy":40,"WeaponDamage":35,"WeaponFireRate":40,"WeaponRange":25,"AmmoType":"Shots Fired","Ammo":6,"Image":"W_PI_VintagePistol.png","Type":"gun","Desc":"What you really need is a more recognisable gun. Stand out from the crowd at an armed robbery with this engraved pistol.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"20","Deaths":1,"EnemyKills":4,"Headshots":7,"HeldTime":2698115,"Kills":14,"Shots":558,"Hits":109,"KillDeathRatio":"14.00","Attachments":[{"Name":"Default Clip","Id":"W_PI_VINTAGEPISTOL_MAG1","Image":"W_PI_VintagePistol_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_PI_VINTAGEPISTOL_MAG2","Image":"W_PI_VintagePistol_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_PI_VINTAGEPISTOL_SUPP","Image":"W_PI_VintagePistol_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"MarksmanPistol","Collection":[{"Conditional":true,"ConditionalReason":"Ill-Gotten Gains Update Part 2","Show":true,"Name":"Marksman Pistol","Url":"marksman-pistol","Template":"gun","Mode":"mp","Id":"MARKSMANPISTOL","Bit":0,"WeaponAccuracy":30,"WeaponDamage":80,"WeaponFireRate":15,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":2,"Image":"DLC_Luxe_PI_SingeShot.png","Type":"gun","Desc":"Not for the risk averse. Make it count as you'll be reloading as much as you shoot. Part of The Ill-Gotten Gains Update Part 2.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"55","Deaths":6,"EnemyKills":3,"Headshots":2,"HeldTime":551248,"Kills":6,"Shots":20,"Hits":11,"KillDeathRatio":"1.00","Attachments":[]}]},{"SubNav":"HeavyRevolver","Collection":[{"Conditional":true,"ConditionalReason":"Executives and Other Criminals","Show":true,"Name":"Heavy Revolver","Url":"heavy-revolver","Template":"gun","Mode":"mp","Id":"HEAVYREVOLVER","Bit":0,"WeaponAccuracy":65,"WeaponDamage":70,"WeaponFireRate":20,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":6,"Image":"DLC_Apartments_P_Revolver.png","Type":"gun","Desc":"A handgun with enough stopping power to drop a crazed rhino, and heavy enough to beat it to death if you're out of ammo. Part of Executives and Other Criminals.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"47","Deaths":17,"EnemyKills":0,"Headshots":2,"HeldTime":1300245,"Kills":41,"Shots":206,"Hits":97,"KillDeathRatio":"2.41","Attachments":[]}]},{"SubNav":"FlareGun","Collection":[{"Conditional":true,"ConditionalReason":"Heists","Show":true,"Name":"Flare Gun","Url":"flare-gun","Template":"gun","Mode":"mp","Id":"FLAREGUN","Bit":0,"WeaponAccuracy":30,"WeaponDamage":20,"WeaponFireRate":10,"WeaponRange":10,"AmmoType":"Shots Fired","Ammo":10,"Image":"DLC_PI_Flare.png","Type":"gun","Desc":"Use to signal distress or drunken excitement. Warning: pointing directly at individuals may cause spontaneous combustion. Part of Heists.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"4","Deaths":5,"EnemyKills":3,"Headshots":2,"HeldTime":28840549,"Kills":40,"Shots":2272,"Hits":91,"KillDeathRatio":"8.00","Attachments":[]}]},{"SubNav":"SawedOffShotgun","Collection":[{"Conditional":true,"ConditionalReason":"Social Club","Show":true,"Name":"Sawed-Off Shotgun","Url":"sawed-off-shotgun","Template":"gun","Mode":"mp","Id":"SAWED-OFFSHOTGUN","Bit":0,"WeaponAccuracy":20,"WeaponDamage":96,"WeaponFireRate":20,"WeaponRange":15,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_SG_SAWNOFF.png","Type":"gun","Desc":"This single-barrel, sawed-off shotgun compensates for its low range and ammo capacity with devastating efficiency in close combat.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"40","Deaths":67,"EnemyKills":10,"Headshots":9,"HeldTime":2504036,"Kills":34,"Shots":330,"Hits":131,"KillDeathRatio":"0.51","Attachments":[]}]},{"SubNav":"PumpShotgun","Collection":[{"Conditional":false,"Show":true,"Name":"Pump Shotgun","Url":"pump-shotgun","Template":"gun","Mode":"mp","Id":"PUMPSHOTGUN","Bit":0,"WeaponAccuracy":30,"WeaponDamage":67,"WeaponFireRate":20,"WeaponRange":20,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_SG_PumpShotgun.png","Type":"gun","Desc":"Standard shotgun ideal for short-range combat. A high-projectile spread makes up for its lower accuracy at long range.","UnlockRank":"17","IsUnlocked":true,"IsPurchased":true,"Accuracy":"36","Deaths":1533,"EnemyKills":14,"Headshots":20,"HeldTime":2691007,"Kills":44,"Shots":295,"Hits":106,"KillDeathRatio":"0.03","Attachments":[{"Name":"Flashlight","Id":"W_SG_PUMPSHOTGUN_FLASH","Image":"W_SG_PumpShotgun_Flash","UnlockRank":18,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_SG_PUMPSHOTGUN_SUPP","Image":"W_SG_PumpShotgun_Supp","UnlockRank":19,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"AssaultShotgun","Collection":[{"Conditional":false,"Show":true,"Name":"Assault Shotgun","Url":"assault-shotgun","Template":"gun","Mode":"mp","Id":"ASSAULTSHOTGUN","Bit":0,"WeaponAccuracy":25,"WeaponDamage":77,"WeaponFireRate":50,"WeaponRange":20,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_SG_AssaultShotgun.png","Type":"gun","Desc":"Fully automatic shotgun with 8 round magazine and high rate of fire.","UnlockRank":"37","IsUnlocked":true,"IsPurchased":true,"Accuracy":"20","Deaths":277,"EnemyKills":460,"Headshots":817,"HeldTime":61631867,"Kills":1940,"Shots":26585,"Hits":5248,"KillDeathRatio":"7.00","Attachments":[{"Name":"Default Clip","Id":"W_SG_ASSAULTSHOTGUN_MAG1","Image":"W_SG_AssaultShotgun_Mag1","UnlockRank":37,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_SG_ASSAULTSHOTGUN_MAG2","Image":"W_SG_AssaultShotgun_Mag2","UnlockRank":38,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_SG_ASSAULTSHOTGUN_GRIP","Image":"W_SG_AssaultShotgun_Grip","UnlockRank":39,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_SG_ASSAULTSHOTGUN_FLSH","Image":"W_SG_AssaultShotgun_Flsh","UnlockRank":40,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_SG_ASSAULTSHOTGUN_SUPP","Image":"W_SG_AssaultShotgun_Supp","UnlockRank":41,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"BullpupShotgun","Collection":[{"Conditional":false,"Show":true,"Name":"Bullpup Shotgun","Url":"bullpup-shotgun","Template":"gun","Mode":"mp","Id":"BULLPUPSHOTGUN","Bit":0,"WeaponAccuracy":25,"WeaponDamage":77,"WeaponFireRate":50,"WeaponRange":20,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_SG_BullpupShotgun.png","Type":"gun","Desc":"More than makes up for its slow, pump-action rate of fire with its range and spread. Decimates anything in its projectile path.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"67","Deaths":8,"EnemyKills":0,"Headshots":0,"HeldTime":80995,"Kills":3,"Shots":12,"Hits":8,"KillDeathRatio":"0.38","Attachments":[{"Name":"Flashlight","Id":"W_SG_BULLPUPSHOTGUN_FLASH","Image":"W_SG_BullpupShotgun_Flash","UnlockRank":0,"IsUnlocked":false,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_SG_BULLPUPSHOTGUN_GRIP","Image":"W_SG_BullpupShotgun_Grip","UnlockRank":0,"IsUnlocked":false,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_SG_BULLPUPSHOTGUN_SUPP","Image":"W_SG_BullpupShotgun_Supp","UnlockRank":0,"IsUnlocked":false,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"HeavyShotgun","Collection":[{"Conditional":true,"ConditionalReason":"Last Team Standing Update","Show":true,"Name":"Heavy Shotgun","Url":"heavy-shotgun","Template":"gun","Mode":"mp","Id":"HEAVYSHOTGUN","Bit":0,"WeaponAccuracy":30,"WeaponDamage":85,"WeaponFireRate":45,"WeaponRange":25,"AmmoType":"Shots Fired","Ammo":8,"Image":"DLC_LTS_SG_HeavyShotgun.png","Type":"gun","Desc":"The weapon to reach for when you absolutely need to make a horrible mess of the room. Best used near easy-wipe surfaces only. Part of the Last Team Standing Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"22","Deaths":28,"EnemyKills":10,"Headshots":14,"HeldTime":16768940,"Kills":47,"Shots":486,"Hits":108,"KillDeathRatio":"1.68","Attachments":[{"Name":"Default Clip","Id":"DLC_LTS_SG_HEAVYSHOTGUN_MAG1","Image":"DLC_LTS_SG_HeavyShotgun_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_LTS_SG_HEAVYSHOTGUN_MAG2","Image":"DLC_LTS_SG_HeavyShotgun_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_SG_HEAVYSHOTGUN_BOXMAG","Image":"DLC_Executive_SG_HeavyShotgun_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"DLC_LTS_SG_HEAVYSHOTGUN_FLASH","Image":"DLC_LTS_SG_HeavyShotgun_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"DLC_LTS_SG_HEAVYSHOTGUN_SUPP","Image":"DLC_LTS_SG_HeavyShotgun_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"DLC_LTS_SG_HEAVYSHOTGUN_GRIP","Image":"DLC_LTS_SG_HeavyShotgun_Grip","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"DoubleBarrel","Collection":[{"Conditional":true,"ConditionalReason":"Lowriders: Custom Classics","Show":true,"Name":"Double Barrel Shotgun","Url":"double-barrel","Template":"gun","Mode":"mp","Id":"DOUBLEBARRELSHOTGUN","Bit":0,"WeaponAccuracy":15,"WeaponDamage":98,"WeaponFireRate":25,"WeaponRange":10,"AmmoType":"Shots Fired","Ammo":5,"Image":"DLC_LowRider2_SG_DoubleBarrel.png","Type":"gun","Desc":"Do one thing, do it well. Who needs a high rate of fire when your first shot turns the other guy into a fine mist? Part of Lowriders: Custom Classics.","IsUnlocked":true,"IsPurchased":true,"Accuracy":"13","Deaths":4,"EnemyKills":0,"Headshots":4,"HeldTime":363415,"Kills":4,"Shots":60,"Hits":8,"KillDeathRatio":"1.00","Attachments":[]}]},{"SubNav":"SweeperShotgun","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Sweeper Shotgun","Url":"sweeper-shotgun","Template":"gun","Mode":"mp","Id":"SWEEPERSHOTGUN","Bit":0,"WeaponAccuracy":22,"WeaponDamage":70,"WeaponFireRate":45,"WeaponRange":20,"AmmoType":"Shots Fired","Ammo":10,"Image":"DLC_Biker_W_SG_Sweeper.png","Type":"gun","Desc":"How many effective tools for riot control can you tuck into your pants? Ok, two. But this is the other one. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"18","Deaths":2,"EnemyKills":0,"Headshots":18,"HeldTime":568129,"Kills":31,"Shots":555,"Hits":99,"KillDeathRatio":"15.50","Attachments":[]}]},{"SubNav":"MicroSMG","Collection":[{"Conditional":false,"Show":true,"Name":"Micro SMG","Url":"micro-smg","Template":"gun","Mode":"mp","Id":"MICROSMG","Bit":0,"WeaponAccuracy":30,"WeaponDamage":21,"WeaponFireRate":60,"WeaponRange":25,"AmmoType":"Shots Fired","Ammo":20,"Image":"W_SB_MicroSMG.png","Type":"gun","Desc":"Combines compact design with a high rate of fire at approximately 700-900 rounds per minute.","UnlockRank":"5","IsUnlocked":true,"IsPurchased":true,"Accuracy":"27","Deaths":313,"EnemyKills":165,"Headshots":880,"HeldTime":50955312,"Kills":1990,"Shots":119632,"Hits":32041,"KillDeathRatio":"6.36","Attachments":[{"Name":"Default Clip","Id":"W_SB_MICROSMG_MAG1","Image":"W_SB_MicroSMG_Mag1","UnlockRank":5,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_SB_MICROSMG_MAG2","Image":"W_SB_MicroSMG_Mag2","UnlockRank":6,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_SB_MICROSMG_FLASH","Image":"W_SB_MicroSMG_Flash","UnlockRank":7,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_SB_MICROSMG_SCOPE","Image":"W_SB_MicroSMG_Scope","UnlockRank":8,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_SB_MICROSMG_SUPP","Image":"W_SB_MicroSMG_Supp","UnlockRank":9,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"SMG","Collection":[{"Conditional":false,"Show":true,"Name":"SMG","Url":"smg","Template":"gun","Mode":"mp","Id":"SMG","Bit":0,"WeaponAccuracy":40,"WeaponDamage":22,"WeaponFireRate":55,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":40,"Image":"DLC_Executive_W_SB_SMG.png","Type":"gun","Desc":"This is known as a good all-around submachine gun. Lightweight with an accurate sight and 30-round magazine capacity.","UnlockRank":"11","IsUnlocked":true,"IsPurchased":true,"Accuracy":"30","Deaths":129,"EnemyKills":1,"Headshots":51,"HeldTime":2466940,"Kills":65,"Shots":1494,"Hits":443,"KillDeathRatio":"0.50","Attachments":[{"Name":"Default Clip","Id":"DLC_EXECUTIVE_W_SB_SMG_MAG1","Image":"DLC_Executive_W_SB_SMG_Mag1","UnlockRank":11,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_EXECUTIVE_W_SB_SMG_MAG2","Image":"DLC_Executive_W_SB_SMG_Mag2","UnlockRank":12,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_W_SB_SMG_BOXMAG","Image":"DLC_Executive_W_SB_SMG_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"DLC_EXECUTIVE_W_SB_SMG_FLASH","Image":"DLC_Executive_W_SB_SMG_Flash","UnlockRank":13,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"DLC_EXECUTIVE_W_SB_SMG_SCOPE","Image":"DLC_Executive_W_SB_SMG_Scope","UnlockRank":14,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"DLC_EXECUTIVE_W_SB_SMG_SUPP","Image":"DLC_Executive_W_SB_SMG_Supp","UnlockRank":15,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"AssaultSMG","Collection":[{"Conditional":false,"Show":true,"Name":"Assault SMG","Url":"assault-smg","Template":"gun","Mode":"mp","Id":"ASSAULTSMG","Bit":0,"WeaponAccuracy":40,"WeaponDamage":22,"WeaponFireRate":55,"WeaponRange":35,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_SB_AssaultSMG.png","Type":"gun","Desc":"A high-capacity submachine gun that is both compact and lightweight. Holds up to 30 bullets in one magazine.","UnlockRank":"29","IsUnlocked":true,"IsPurchased":true,"Accuracy":"22","Deaths":29,"EnemyKills":3,"Headshots":7,"HeldTime":1286369,"Kills":16,"Shots":601,"Hits":131,"KillDeathRatio":"0.55","Attachments":[{"Name":"Default Clip","Id":"W_SB_ASSAULTSMG_MAG1","Image":"W_SB_AssaultSMG_Mag1","UnlockRank":29,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_SB_ASSAULTSMG_MAG2","Image":"W_SB_AssaultSMG_Mag2","UnlockRank":30,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_SB_ASSAULTSMG_FLASH","Image":"W_SB_AssaultSMG_Flash","UnlockRank":31,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_SB_ASSAULTSMG_SCOPE","Image":"W_SB_AssaultSMG_Scope","UnlockRank":32,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_SB_ASSAULTSMG_SUPP","Image":"W_SB_AssaultSMG_Supp","UnlockRank":33,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"GusenbergSweeper","Collection":[{"Conditional":true,"ConditionalReason":"Valentine's Day Massacre Special","Show":true,"Name":"Gusenberg Sweeper","Url":"gusenberg-sweeper","Template":"gun","Mode":"mp","Id":"GUSENBERGSWEEPER","Bit":0,"WeaponAccuracy":38,"WeaponDamage":34,"WeaponFireRate":65,"WeaponRange":56,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_SB_Gusenberg.png","Type":"gun","Desc":"Complete your look with a Prohibition gun. Looks great being fired from an Albany Roosevelt or paired with a pinstripe suit. Part of the Valentine's Day Massacre Special.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"10","Deaths":21,"EnemyKills":0,"Headshots":0,"HeldTime":234666,"Kills":1,"Shots":157,"Hits":15,"KillDeathRatio":"0.05","Attachments":[{"Name":"Default Clip","Id":"W_SB_GUSENBERG_MAG1","Image":"W_SB_Gusenberg_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_SB_GUSENBERG_MAG2","Image":"W_SB_Gusenberg_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"CombatPDW","Collection":[{"Conditional":true,"ConditionalReason":"Ill-Gotten Gains Update Part 1","Show":true,"Name":"Combat PDW","Url":"combat-pdw","Template":"gun","Mode":"mp","Id":"COMBATPDW","Bit":0,"WeaponAccuracy":45,"WeaponDamage":25,"WeaponFireRate":50,"WeaponRange":38,"AmmoType":"Shots Fired","Ammo":40,"Image":"DLC_Executive_SB_PDW_None.png","Type":"gun","Desc":"Who said personal weaponry couldn't be worthy of military personnel? Thanks to our lobbyists, not Congress. Integral suppressor. Part of the Ill-Gotten Gains Update Part 1.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"6","Deaths":7,"EnemyKills":0,"Headshots":0,"HeldTime":100040,"Kills":0,"Shots":94,"Hits":6,"KillDeathRatio":"0.00","Attachments":[{"Name":"Default Clip","Id":"DLC_EXECUTIVE_SB_PDW_MAG1","Image":"DLC_Executive_SB_PDW_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_EXECUTIVE_SB_PDW_MAG2","Image":"DLC_Executive_SB_PDW_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_SB_PDW_BOXMAG","Image":"DLC_Executive_SB_PDW_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":false,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"DLC_EXECUTIVE_SB_PDW_FLASH","Image":"DLC_Executive_SB_PDW_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"DLC_EXECUTIVE_SB_PDW_SCOPE","Image":"DLC_Executive_SB_PDW_Scope","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"DLC_EXECUTIVE_SB_PDW_GRIP","Image":"DLC_Executive_SB_PDW_Grip","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"MachinePistol","Collection":[{"Conditional":true,"ConditionalReason":"Lowriders","Show":true,"Name":"Machine Pistol","Url":"machine-pistol","Template":"gun","Mode":"mp","Id":"MACHINEPISTOL","Bit":0,"WeaponAccuracy":35,"WeaponDamage":28,"WeaponFireRate":55,"WeaponRange":30,"AmmoType":"Shots Fired","Ammo":15,"Image":"DLC_Executive_SB_Machine_Pistol_None.png","Type":"gun","Desc":"This fully automatic is the snare drum to your twin-engine V8 bass: no drive-by sounds quite right without it. Part of Lowriders.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"22","Deaths":10,"EnemyKills":3,"Headshots":25,"HeldTime":1072428,"Kills":54,"Shots":3303,"Hits":743,"KillDeathRatio":"5.40","Attachments":[{"Name":"Default Clip","Id":"DLC_EXECUTIVE_SB_MACHINE_PISTOL_MAG1","Image":"DLC_Executive_SB_Machine_Pistol_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_EXECUTIVE_SB_MACHINE_PISTOL_MAG2","Image":"DLC_Executive_SB_Machine_Pistol_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_SB_MACHINE_PISTOL_BOXMAG","Image":"DLC_Executive_SB_Machine_Pistol_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"DLC_EXECUTIVE_SB_MACHINE_PISTOL_SUPP","Image":"DLC_Executive_SB_Machine_Pistol_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"MiniSmg","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Mini SMG","Url":"mini-smg","Template":"gun","Mode":"mp","Id":"MINISMG","Bit":0,"WeaponAccuracy":33,"WeaponDamage":22,"WeaponFireRate":84,"WeaponRange":30,"AmmoType":"Shots Fired","Ammo":12,"Image":"DLC_Biker_W_SB_MiniSMGs_None.png","Type":"gun","Desc":"Increasingly popular since the marketing team looked beyond spec ops units and started caring about the little guys in low income areas. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"32","Deaths":1,"EnemyKills":0,"Headshots":10,"HeldTime":473427,"Kills":16,"Shots":1131,"Hits":366,"KillDeathRatio":"16.00","Attachments":[{"Name":"Default Clip","Id":"DLC_BIKER_W_SB_MINISMGS_MAG1","Image":"DLC_Biker_W_SB_MiniSMGs_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_BIKER_W_SB_MINISMGS_MAG2","Image":"DLC_Biker_W_SB_MiniSMGs_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"MG","Collection":[{"Conditional":false,"Show":true,"Name":"MG","Url":"mg","Template":"gun","Mode":"mp","Id":"MG","Bit":0,"WeaponAccuracy":40,"WeaponDamage":30,"WeaponFireRate":60,"WeaponRange":60,"AmmoType":"Shots Fired","Ammo":50,"Image":"W_MG_MG.png","Type":"gun","Desc":"General purpose machine gun that combines rugged design with dependable performance. Long range penetrative power. Very effective against large groups.","UnlockRank":"50","IsUnlocked":true,"IsPurchased":true,"Accuracy":"22","Deaths":79,"EnemyKills":99,"Headshots":214,"HeldTime":16706986,"Kills":552,"Shots":19637,"Hits":4380,"KillDeathRatio":"6.99","Attachments":[{"Name":"Default Clip","Id":"W_MG_MG_MAG1","Image":"W_MG_MG_Mag1","UnlockRank":50,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_MG_MG_MAG2","Image":"W_MG_MG_Mag2","UnlockRank":51,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_MG_MG_SCOPE","Image":"W_MG_MG_Scope","UnlockRank":52,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"CombatMG","Collection":[{"Conditional":false,"Show":true,"Name":"Combat MG","Url":"combat-mg","Template":"gun","Mode":"mp","Id":"COMBATMG","Bit":0,"WeaponAccuracy":45,"WeaponDamage":32,"WeaponFireRate":65,"WeaponRange":60,"AmmoType":"Shots Fired","Ammo":70,"Image":"W_MG_CombatMG.png","Type":"gun","Desc":"Lightweight, compact machine gun that combines excellent maneuverability with a high rate of fire to devastating effect.","UnlockRank":"80","IsUnlocked":true,"IsPurchased":true,"Accuracy":"22","Deaths":298,"EnemyKills":343,"Headshots":1178,"HeldTime":79639302,"Kills":2840,"Shots":100391,"Hits":21946,"KillDeathRatio":"9.53","Attachments":[{"Name":"Default Clip","Id":"W_MG_COMBATMG_MAG1","Image":"W_MG_CombatMG_Mag1","UnlockRank":80,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_MG_COMBATMG_MAG2","Image":"W_MG_CombatMG_Mag2","UnlockRank":81,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_MG_COMBATMG_GRIP","Image":"W_MG_CombatMG_Grip","UnlockRank":82,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_MG_COMBATMG_SCOPE","Image":"W_MG_CombatMG_Scope","UnlockRank":83,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"AssaultRifle","Collection":[{"Conditional":false,"Show":true,"Name":"Assault Rifle","Url":"assault-rifle","Template":"gun","Mode":"mp","Id":"ASSAULTRIFLE","Bit":0,"WeaponAccuracy":45,"WeaponDamage":30,"WeaponFireRate":60,"WeaponRange":45,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_AR_AssaultRifle.png","Type":"gun","Desc":"This standard assault rifle boasts a large capacity magazine and long distance accuracy.","UnlockRank":"24","IsUnlocked":true,"IsPurchased":true,"Accuracy":"31","Deaths":404,"EnemyKills":221,"Headshots":805,"HeldTime":50731693,"Kills":1718,"Shots":33998,"Hits":10581,"KillDeathRatio":"4.25","Attachments":[{"Name":"Default Clip","Id":"W_AR_ASSAULTRIFLE_MAG1","Image":"W_AR_AssaultRifle_Mag1","UnlockRank":24,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_AR_ASSAULTRIFLE_MAG2","Image":"W_AR_AssaultRifle_Mag2","UnlockRank":25,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_AR_ASSAULTRIFLE_BOXMAG","Image":"DLC_Executive_AR_AssaultRifle_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_AR_ASSAULTRIFLE_GRIP","Image":"W_AR_AssaultRifle_Grip","UnlockRank":26,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_AR_ASSAULTRIFLE_FLASH","Image":"W_AR_AssaultRifle_Flash","UnlockRank":27,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_AR_ASSAULTRIFLE_SCOPE","Image":"W_AR_AssaultRifle_Scope","UnlockRank":28,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_AR_ASSAULTRIFLE_SUPP","Image":"W_AR_AssaultRifle_Supp","UnlockRank":29,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"CarbineRifle","Collection":[{"Conditional":false,"Show":true,"Name":"Carbine Rifle","Url":"carbine-rifle","Template":"gun","Mode":"mp","Id":"CARBINERIFLE","Bit":0,"WeaponAccuracy":55,"WeaponDamage":32,"WeaponFireRate":65,"WeaponRange":45,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_AR_CarbineRifle.png","Type":"gun","Desc":"Combining long distance accuracy with a high capacity magazine, the Carbine Rifle can be relied on to make the hit.","UnlockRank":"42","IsUnlocked":true,"IsPurchased":true,"Accuracy":"28","Deaths":785,"EnemyKills":245,"Headshots":420,"HeldTime":41925810,"Kills":1206,"Shots":34252,"Hits":9714,"KillDeathRatio":"1.54","Attachments":[{"Name":"Default Clip","Id":"W_AR_CARBINERIFLE_MAG1","Image":"W_AR_CarbineRifle_Mag1","UnlockRank":42,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_AR_CARBINERIFLE_MAG2","Image":"W_AR_CarbineRifle_Mag2","UnlockRank":43,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Box Clip","Id":"DLC_EXECUTIVE_AR_CARBINERIFLE_BOXMAG","Image":"DLC_Executive_AR_CarbineRifle_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_AR_CARBINERIFLE_GRIP","Image":"W_AR_CarbineRifle_Grip","UnlockRank":44,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_AR_CARBINERIFLE_FLASH","Image":"W_AR_CarbineRifle_Flash","UnlockRank":45,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_AR_CARBINERIFLE_SCOPE","Image":"W_AR_CarbineRifle_Scope","UnlockRank":46,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_AR_CARBINERIFLE_SUPP","Image":"W_AR_CarbineRifle_Supp","UnlockRank":47,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"AdvancedRifle","Collection":[{"Conditional":false,"Show":true,"Name":"Advanced Rifle","Url":"advanced-rifle","Template":"gun","Mode":"mp","Id":"ADVANCEDRIFLE","Bit":0,"WeaponAccuracy":50,"WeaponDamage":34,"WeaponFireRate":70,"WeaponRange":45,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_AR_AdvancedRifle.png","Type":"gun","Desc":"The most lightweight and compact of all assault rifles, without compromising accuracy and rate of fire.","UnlockRank":"70","IsUnlocked":true,"IsPurchased":true,"Accuracy":"27","Deaths":300,"EnemyKills":1269,"Headshots":3888,"HeldTime":185873898,"Kills":7502,"Shots":177044,"Hits":48633,"KillDeathRatio":"25.01","Attachments":[{"Name":"Default Clip","Id":"W_AR_ADVANCEDRIFLE_MAG1","Image":"W_AR_AdvancedRifle_Mag1","UnlockRank":70,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_AR_ADVANCEDRIFLE_MAG2","Image":"W_AR_AdvancedRifle_Mag2","UnlockRank":71,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_AR_ADVANCEDRIFLE_FLASH","Image":"W_AR_AdvancedRifle_Flash","UnlockRank":72,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_AR_ADVANCEDRIFLE_SCOPEMEDIUM","Image":"W_AR_AdvancedRifle_ScopeMedium","UnlockRank":73,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_AR_ADVANCEDRIFLE_SUPP","Image":"W_AR_AdvancedRifle_Supp","UnlockRank":74,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"BullpupRifle","Collection":[{"Conditional":true,"ConditionalReason":"High Life Update","Show":true,"Name":"Bullpup Rifle","Url":"bullpup-rifle","Template":"gun","Mode":"mp","Id":"BULLPUPRIFLE","Bit":0,"WeaponAccuracy":50,"WeaponDamage":32,"WeaponFireRate":70,"WeaponRange":45,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_AR_BullpupRifle.png","Type":"gun","Desc":"The latest Chinese import taking America by storm, this rifle is known for its balanced handling. Lightweight and very controllable in automatic fire. Part of the High Life Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"31","Deaths":351,"EnemyKills":71,"Headshots":142,"HeldTime":7433038,"Kills":331,"Shots":7945,"Hits":2453,"KillDeathRatio":"0.94","Attachments":[{"Name":"Default Clip","Id":"W_AR_BULLPUPRIFLE_MAG1","Image":"W_AR_BullpupRifle_Mag1","UnlockRank":70,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_AR_BULLPUPRIFLE_MAG2","Image":"W_AR_BullpupRifle_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_AR_BULLPUPRIFLE_FLASH","Image":"W_AR_BullpupRifle_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_AR_BULLPUPRIFLE_SCOPE","Image":"W_AR_BullpupRifle_Scope","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_AR_BULLPUPRIFLE_SUPP","Image":"W_AR_BullpupRifle_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_AR_BULLPUPRIFLE_GRIP","Image":"W_AR_BullpupRifle_Grip","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"SpecialCarbine","Collection":[{"Conditional":true,"ConditionalReason":"Business Update","Show":true,"Name":"Special Carbine","Url":"special-carbine","Template":"gun","Mode":"mp","Id":"SPECIALCARBINE","Bit":0,"WeaponAccuracy":55,"WeaponDamage":34,"WeaponFireRate":65,"WeaponRange":40,"AmmoType":"Shots Fired","Ammo":40,"Image":"W_AR_SpecialCarbine.png","Type":"gun","Desc":"Combining accuracy, maneuverability, firepower and low recoil, this is an extremely versatile assault rifle for any combat situation. Part of the Business Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"23","Deaths":785,"EnemyKills":95,"Headshots":395,"HeldTime":27521477,"Kills":1042,"Shots":26471,"Hits":6051,"KillDeathRatio":"1.33","Attachments":[{"Name":"Default Clip","Id":"W_AR_SPECIALCARBINE_MAG1","Image":"W_AR_SpecialCarbine_Mag1","UnlockRank":70,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"W_AR_SPECIALCARBINE_MAG2","Image":"W_AR_SpecialCarbine_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_AR_SPECIALCARBINE_BOXMAG","Image":"DLC_Executive_AR_SpecialCarbine_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_AR_SPECIALCARBINE_FLASH","Image":"W_AR_SpecialCarbine_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_AR_SPECIALCARBINE_SCOPE","Image":"W_AR_SpecialCarbine_Scope","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"W_AR_SPECIALCARBINE_SUPP","Image":"W_AR_SpecialCarbine_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"W_AR_SPECIALCARBINE_GRIP","Image":"W_AR_SpecialCarbine_Grip","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"Musket","Collection":[{"Conditional":true,"ConditionalReason":"Independence Day Special","Show":true,"Name":"Musket","Url":"musket","Template":"gun","Mode":"mp","Id":"MUSKET","Bit":0,"WeaponAccuracy":65,"WeaponDamage":97,"WeaponFireRate":10,"WeaponRange":85,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_AR_Musket.png","Type":"gun","Desc":"Armed with nothing but muskets and a superiority complex, the Brits took over half the world. Own the gun that built an Empire. Part of the Independence Day Special.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"21","Deaths":17,"EnemyKills":1,"Headshots":7,"HeldTime":2069850,"Kills":21,"Shots":152,"Hits":32,"KillDeathRatio":"1.24","Attachments":[]}]},{"SubNav":"CompactRifle","Collection":[{"Conditional":true,"ConditionalReason":"Lowriders: Custom Classics","Show":true,"Name":"Compact Rifle","Url":"compact-rifle","Template":"gun","Mode":"mp","Id":"COMPACTRIFLE","Bit":0,"WeaponAccuracy":35,"WeaponDamage":36,"WeaponFireRate":60,"WeaponRange":45,"AmmoType":"Shots Fired","Ammo":40,"Image":"DLC_Executive_AR_CompactRifle_None.png","Type":"gun","Desc":"Half the size, all the power, double the recoil: there's no riskier way to say \"I'm compensating for something\". Part of Lowriders: Custom Classics.","IsUnlocked":true,"IsPurchased":true,"Accuracy":"25","Deaths":11,"EnemyKills":0,"Headshots":47,"HeldTime":1776796,"Kills":84,"Shots":1728,"Hits":425,"KillDeathRatio":"7.64","Attachments":[{"Name":"Default Clip","Id":"DLC_EXECUTIVE_AR_COMPACTRIFLE_MAG1","Image":"DLC_Executive_AR_CompactRifle_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_EXECUTIVE_AR_COMPACTRIFLE_MAG2","Image":"DLC_Executive_AR_CompactRifle_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Drum Magazine","Id":"DLC_EXECUTIVE_AR_COMPACTRIFLE_BOXMAG","Image":"DLC_Executive_AR_CompactRifle_boxmag","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"MarksmanRifle","Collection":[{"Conditional":true,"ConditionalReason":"Last Team Standing Update","Show":true,"Name":"Marksman Rifle","Url":"marksman-rifle","Template":"gun","Mode":"mp","Id":"MARKSMANRIFLE","Bit":0,"WeaponAccuracy":80,"WeaponDamage":70,"WeaponFireRate":40,"WeaponRange":90,"AmmoType":"Shots Fired","Ammo":10,"Image":"DLC_LTS_SR_MarksmanRifle.png","Type":"gun","Desc":"Whether you're up close or a disconcertingly long way away, this weapon will get the job done. A multi-range tool for tools. Part of the Last Team Standing Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"20","Deaths":225,"EnemyKills":512,"Headshots":225,"HeldTime":85654700,"Kills":730,"Shots":23163,"Hits":4519,"KillDeathRatio":"3.24","Attachments":[{"Name":"Default Clip","Id":"DLC_LTS_SR_MARKSMANRIFLE_MAG1","Image":"DLC_LTS_SR_MarksmanRifle_Mag1","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Extended Clip","Id":"DLC_LTS_SR_MARKSMANRIFLE_MAG2","Image":"DLC_LTS_SR_MarksmanRifle_Mag2","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"DLC_LTS_SR_MARKSMANRIFLE_SCOPE","Image":"DLC_LTS_SR_MarksmanRifle_Scope","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"DLC_LTS_SR_MARKSMANRIFLE_FLASH","Image":"DLC_LTS_SR_MarksmanRifle_Flash","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Suppressor","Id":"DLC_LTS_SR_MARKSMANRIFLE_SUPP","Image":"DLC_LTS_SR_MarksmanRifle_Supp","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Grip","Id":"DLC_LTS_SR_MARKSMANRIFLE_GRIP","Image":"DLC_LTS_SR_MarksmanRifle_Grip","UnlockRank":0,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"SniperRifle","Collection":[{"Conditional":false,"Show":true,"Name":"Sniper Rifle","Url":"sniper-rifle","Template":"gun","Mode":"mp","Id":"SNIPERRIFLE","Bit":0,"WeaponAccuracy":70,"WeaponDamage":96,"WeaponFireRate":25,"WeaponRange":95,"AmmoType":"Shots Fired","Ammo":10,"Image":"W_SR_SniperRifle.png","Type":"gun","Desc":"Standard sniper rifle. Ideal for situations that require accuracy at long range. Limitations include slow reload speed and very low rate of fire.","UnlockRank":"21","IsUnlocked":true,"IsPurchased":true,"Accuracy":"39","Deaths":301,"EnemyKills":168,"Headshots":145,"HeldTime":53545474,"Kills":409,"Shots":2998,"Hits":1180,"KillDeathRatio":"1.36","Attachments":[{"Name":"Scope","Id":"W_SR_SNIPERRIFLE_SCOPE","Image":"W_SR_SniperRifle_Scope","UnlockRank":21,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Suppressor","Id":"W_SR_SNIPERRIFLE_SUPP","Image":"W_SR_SniperRifle_Supp","UnlockRank":22,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Advanced Scope","Id":"W_SR_SNIPERRIFLE_SCOPE_LARGE","Image":"W_SR_SniperRifle_Scope_Large","UnlockRank":23,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"HeavySniper","Collection":[{"Conditional":false,"Show":true,"Name":"Heavy Sniper","Url":"heavy-sniper","Template":"gun","Mode":"mp","Id":"HEAVYSNIPER","Bit":0,"WeaponAccuracy":90,"WeaponDamage":98,"WeaponFireRate":20,"WeaponRange":100,"AmmoType":"Shots Fired","Ammo":5,"Image":"W_SR_HeavySniper.png","Type":"gun","Desc":"Features armor-piercing rounds for heavy damage. Comes with laser scope as standard.","UnlockRank":"90","IsUnlocked":true,"IsPurchased":true,"Accuracy":"35","Deaths":792,"EnemyKills":1956,"Headshots":492,"HeldTime":276802174,"Kills":2829,"Shots":16245,"Hits":5758,"KillDeathRatio":"3.57","Attachments":[{"Name":"Scope","Id":"W_SR_HEAVYSNIPER_SCOPE_SMALL","Image":"W_SR_HeavySniper_Scope_Small","UnlockRank":90,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":true,"Default":false},{"Name":"Advanced Scope","Id":"W_SR_HEAVYSNIPER_SCOPE","Image":"W_SR_HeavySniper_Scope","UnlockRank":91,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"GrenadeLauncher","Collection":[{"Conditional":false,"Show":true,"Name":"Grenade Launcher","Url":"grenade-launcher","Template":"projectile","Mode":"mp","Id":"GRENADELAUNCHER","Bit":0,"WeaponAccuracy":10,"WeaponDamage":95,"WeaponFireRate":20,"WeaponRange":50,"AmmoType":"Grenades Fired","Ammo":20,"Image":"W_R_GrenadeLauncher.png","Type":"projectile","Desc":"A compact, lightweight grenade launcher with semi-automatic functionality. Holds up to 10 rounds.","UnlockRank":"60","IsUnlocked":true,"IsPurchased":true,"Accuracy":"44","Deaths":152,"EnemyKills":61,"Headshots":0,"HeldTime":26518057,"Kills":1497,"Shots":3426,"Hits":0,"KillDeathRatio":"9.85","Attachments":[{"Name":"Grip","Id":"W_R_GRENADELAUNCHER_GRIP","Image":"W_R_GrenadeLauncher_Grip","UnlockRank":61,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Flashlight","Id":"W_R_GRENADELAUNCHER_FLASH","Image":"W_R_GrenadeLauncher_Flash","UnlockRank":62,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false},{"Name":"Scope","Id":"W_R_GRENADELAUNCHER_SCOPE","Image":"W_R_GrenadeLauncher_Scope","UnlockRank":63,"IsUnlocked":true,"IsPurchased":true,"Bit":0,"Hidden":false,"Default":false}]}]},{"SubNav":"RPG","Collection":[{"Conditional":false,"Show":true,"Name":"RPG","Url":"rpg","Template":"projectile","Mode":"mp","Id":"RPG","Bit":0,"WeaponAccuracy":10,"WeaponDamage":100,"WeaponFireRate":5,"WeaponRange":70,"AmmoType":"Rockets Fired","Ammo":10,"Image":"W_LR_RPG.png","Type":"projectile","Desc":"A portable, shoulder-launched, anti-tank weapon that fires explosive warheads. Very effective for taking down vehicles or large groups of assailants.","UnlockRank":"100","IsUnlocked":true,"IsPurchased":true,"Accuracy":"47","Deaths":446,"EnemyKills":758,"Headshots":0,"HeldTime":87865076,"Kills":3174,"Shots":6700,"Hits":0,"KillDeathRatio":"7.12","Attachments":[]}]},{"SubNav":"FireworkLauncher","Collection":[{"Conditional":true,"ConditionalReason":"Independence Day Special","Show":true,"Name":"Firework Launcher","Url":"firework-launcher","Template":"projectile","Mode":"mp","Id":"FIREWORKLAUNCHER","Bit":0,"WeaponAccuracy":12,"WeaponDamage":45,"WeaponFireRate":5,"WeaponRange":60,"AmmoType":"Used","Ammo":10,"Image":"W_LR_Fireworks.png","Type":"projectile","Desc":"Put the flair back in flare with this firework launcher, guaranteed to raise some oohs and aahs from the crowd. Part of the Independence Day Special.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"6","Deaths":8,"EnemyKills":5,"Headshots":0,"HeldTime":6457178,"Kills":36,"Shots":631,"Hits":0,"KillDeathRatio":"4.50","Attachments":[]}]},{"SubNav":"HomingLauncher","Collection":[{"Conditional":true,"ConditionalReason":"Festive Surprise","Show":true,"Name":"Homing Launcher","Url":"homing-launcher","Template":"projectile","Mode":"mp","Id":"HOMINGLAUNCHER","Bit":0,"WeaponAccuracy":25,"WeaponDamage":95,"WeaponFireRate":5,"WeaponRange":75,"AmmoType":"Used","Ammo":10,"Image":"DLC_Christmas2_LR_Homing.png","Type":"projectile","Desc":"Infrared guided fire-and-forget missile launcher. For all your moving target needs. Part of the Festive Surprise.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"49","Deaths":170,"EnemyKills":171,"Headshots":0,"HeldTime":24754070,"Kills":655,"Shots":1328,"Hits":0,"KillDeathRatio":"3.85","Attachments":[]}]},{"SubNav":"Minigun","Collection":[{"Conditional":false,"Show":true,"Name":"Minigun","Url":"minigun","Template":"gun","Mode":"mp","Id":"MINIGUN","Bit":0,"WeaponAccuracy":40,"WeaponDamage":30,"WeaponFireRate":100,"WeaponRange":55,"AmmoType":"Shots Fired","Ammo":90,"Image":"W_MG_Minigun.png","Type":"gun","Desc":"A devastating 6-barrel machine gun that features Gatling-style rotating barrels. Very high rate of fire (2000 to 6000 rounds per minute).","UnlockRank":"120","IsUnlocked":true,"IsPurchased":true,"Accuracy":"7","Deaths":93,"EnemyKills":18,"Headshots":258,"HeldTime":17000952,"Kills":479,"Shots":343497,"Hits":25207,"KillDeathRatio":"5.15","Attachments":[]}]},{"SubNav":"CompactGrenadeLauncher","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Compact Grenade Launcher","Url":"compact-gl","Template":"projectile","Mode":"mp","Id":"COMPACTGRENADELAUNCHER","Bit":0,"WeaponAccuracy":15,"WeaponDamage":95,"WeaponFireRate":10,"WeaponRange":55,"AmmoType":"Used","Ammo":20,"Image":"DLC_Biker_W_LR_CompactGL.png","Type":"projectile","Desc":"Focus groups using the regular model suggested it was too accurate and found it awkward to use with one hand on the throttle. Easy fix. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"58","Deaths":6,"EnemyKills":0,"Headshots":0,"HeldTime":1602827,"Kills":95,"Shots":164,"Hits":0,"KillDeathRatio":"15.83","Attachments":[]}]},{"SubNav":"Grenade","Collection":[{"Conditional":false,"Show":true,"Name":"Grenade","Url":"grenade","Template":"thrown","Mode":"mp","Id":"GRENADE","Bit":0,"WeaponAccuracy":10,"WeaponDamage":95,"WeaponFireRate":20,"WeaponRange":15,"AmmoType":"Total Thrown","Ammo":10,"Image":"W_Ex_GrenadeFrag.png","Type":"thrown","Desc":"Standard fragmentation grenade. Pull pin, throw, then find cover. Ideal for eliminating clustered assailants.","UnlockRank":"15","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":107,"EnemyKills":20,"Headshots":0,"HeldTime":8522896,"Kills":232,"Shots":1240,"Hits":0,"KillDeathRatio":"2.17","Attachments":[]}]},{"SubNav":"StickyBomb","Collection":[{"Conditional":false,"Show":true,"Name":"Sticky Bomb","Url":"sticky-bomb","Template":"thrown","Mode":"mp","Id":"STICKYBOMB","Bit":0,"WeaponAccuracy":30,"WeaponDamage":95,"WeaponFireRate":10,"WeaponRange":10,"AmmoType":"Total Thrown","Ammo":10,"Image":"W_Ex_PE.png","Type":"thrown","Desc":"A plastic explosive charge fitted with a remote detonator. Can be thrown and then detonated or attached to a vehicle then detonated.","UnlockRank":"19","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":653,"EnemyKills":503,"Headshots":0,"HeldTime":46753550,"Kills":3791,"Shots":7550,"Hits":0,"KillDeathRatio":"5.81","Attachments":[]}]},{"SubNav":"ProximityMine","Collection":[{"Conditional":true,"ConditionalReason":"Festive Surprise","Show":true,"Name":"Proximity Mine","Url":"proximity-mine","Template":"thrown","Mode":"mp","Id":"PROXIMITYMINE","Bit":0,"WeaponAccuracy":30,"WeaponDamage":90,"WeaponFireRate":10,"WeaponRange":20,"AmmoType":"Total Thrown","Ammo":10,"Image":"DLC_Christmas2_W_EX_APmine.png","Type":"thrown","Desc":"Leave a present for your friends with these motion sensor landmines. Short delay after activation. Part of the Festive Surprise.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":34,"EnemyKills":39,"Headshots":0,"HeldTime":2771359,"Kills":117,"Shots":294,"Hits":0,"KillDeathRatio":"3.44","Attachments":[]}]},{"SubNav":"TearGas","Collection":[{"Conditional":false,"Show":true,"Name":"Tear Gas","Url":"tear-gas","Template":"thrown","Mode":"mp","Id":"TEARGAS","Bit":0,"WeaponAccuracy":10,"WeaponDamage":10,"WeaponFireRate":20,"WeaponRange":15,"AmmoType":"Total Thrown","Ammo":10,"Image":"W_Ex_GrenadeSmoke.png","Type":"thrown","Desc":"Tear gas grenade, particularly effective at incapacitating multiple assailants. Sustained exposure can be lethal.","UnlockRank":"13","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":15,"EnemyKills":2,"Headshots":0,"HeldTime":3572943,"Kills":29,"Shots":630,"Hits":0,"KillDeathRatio":"1.93","Attachments":[]}]},{"SubNav":"Molotov","Collection":[{"Conditional":false,"Show":true,"Name":"Molotov","Url":"molotov","Template":"thrown","Mode":"mp","Id":"MOLOTOV","Bit":0,"WeaponAccuracy":20,"WeaponDamage":50,"WeaponFireRate":20,"WeaponRange":8,"AmmoType":"Total Thrown","Ammo":10,"Image":"W_EX_Molotov.png","Type":"thrown","Desc":"Crude yet highly effective incendiary weapon. No happy hour with this cocktail.","UnlockRank":"31","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":3,"EnemyKills":2,"Headshots":0,"HeldTime":1099211,"Kills":7,"Shots":60,"Hits":0,"KillDeathRatio":"2.33","Attachments":[]}]},{"SubNav":"PipeBomb","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Pipe Bomb","Url":"pipe-bomb","Template":"thrown","Mode":"mp","Id":"PIPEBOMB","Bit":0,"WeaponAccuracy":35,"WeaponDamage":85,"WeaponFireRate":10,"WeaponRange":15,"AmmoType":"Total Thrown","Ammo":10,"Image":"DLC_Biker_W_EX_PipeBomb.png","Type":"thrown","Desc":"Remember, it doesn't count as an IED when you buy it in a store and use it in a first world country. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":0,"Headshots":0,"HeldTime":227043,"Kills":8,"Shots":35,"Hits":0,"KillDeathRatio":"8.00","Attachments":[]}]},{"SubNav":"Unarmed","Collection":[{"Conditional":false,"Show":true,"Name":"Unarmed","Url":"unarmed","Template":"melee","Mode":"mp","Id":"UNARMED","Bit":0,"WeaponAccuracy":0,"WeaponDamage":5,"WeaponFireRate":20,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Fist.png","Type":"melee","Desc":"When all else fails, knuckle down and work with what you've got.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":60,"EnemyKills":25,"Headshots":0,"HeldTime":0,"Kills":517,"Shots":0,"Hits":1792,"KillDeathRatio":"8.62","Attachments":[]}]},{"SubNav":"Knife","Collection":[{"Conditional":false,"Show":true,"Name":"Knife","Url":"knife","Template":"melee","Mode":"mp","Id":"KNIFE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":15,"WeaponFireRate":20,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Knife.png","Type":"melee","Desc":"This carbon steel 7\" bladed knife is dual edged with a serrated spine to provide improved stabbing and thrusting capabilities.","UnlockRank":"1","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":17,"EnemyKills":4,"Headshots":0,"HeldTime":16813553,"Kills":22,"Shots":0,"Hits":27,"KillDeathRatio":"1.29","Attachments":[]}]},{"SubNav":"Nightstick","Collection":[{"Conditional":false,"Show":true,"Name":"Nightstick","Url":"nightstick","Template":"melee","Mode":"mp","Id":"NIGHTSTICK","Bit":0,"WeaponAccuracy":0,"WeaponDamage":10,"WeaponFireRate":15,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Nightstick.png","Type":"melee","Desc":"24\" polycarbonate side-handled nightstick.","UnlockRank":"3","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":4,"EnemyKills":0,"Headshots":0,"HeldTime":1325619,"Kills":1,"Shots":0,"Hits":8,"KillDeathRatio":"0.25","Attachments":[]}]},{"SubNav":"Hammer","Collection":[{"Conditional":false,"Show":true,"Name":"Hammer","Url":"hammer","Template":"melee","Mode":"mp","Id":"HAMMER","Bit":0,"WeaponAccuracy":0,"WeaponDamage":10,"WeaponFireRate":15,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Hammer.png","Type":"melee","Desc":"A robust, multi-purpose hammer with wooden handle and curved claw, this old classic still nails the competition.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":0,"Headshots":0,"HeldTime":725118,"Kills":8,"Shots":0,"Hits":63,"KillDeathRatio":"8.00","Attachments":[]}]},{"SubNav":"BaseballBat","Collection":[{"Conditional":false,"Show":true,"Name":"Baseball Bat","Url":"baseball-bat","Template":"melee","Mode":"mp","Id":"BASEBALLBAT","Bit":0,"WeaponAccuracy":0,"WeaponDamage":20,"WeaponFireRate":10,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Bat.png","Type":"melee","Desc":"Aluminum baseball bat with leather grip. Lightweight yet powerful for all you big hitters out there.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":4,"EnemyKills":4,"Headshots":0,"HeldTime":1572836,"Kills":12,"Shots":0,"Hits":22,"KillDeathRatio":"3.00","Attachments":[]}]},{"SubNav":"Crowbar","Collection":[{"Conditional":false,"Show":true,"Name":"Crowbar","Url":"crowbar","Template":"melee","Mode":"mp","Id":"CROWBAR","Bit":0,"WeaponAccuracy":0,"WeaponDamage":10,"WeaponFireRate":15,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Crowbar.png","Type":"melee","Desc":"Heavy-duty crowbar forged from high quality, tempered steel for that extra leverage you need to get the job done.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":1,"Headshots":0,"HeldTime":805874,"Kills":1,"Shots":0,"Hits":4,"KillDeathRatio":"1.00","Attachments":[]}]},{"SubNav":"GolfClub","Collection":[{"Conditional":false,"Show":true,"Name":"Golf Club","Url":"golf-club","Template":"melee","Mode":"mp","Id":"GOLFCLUB","Bit":0,"WeaponAccuracy":0,"WeaponDamage":20,"WeaponFireRate":10,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_GClub.png","Type":"melee","Desc":"Standard length, mid iron golf club with rubber grip for a lethal short game.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":5,"EnemyKills":2,"Headshots":0,"HeldTime":1811880,"Kills":5,"Shots":0,"Hits":24,"KillDeathRatio":"1.00","Attachments":[]}]},{"SubNav":"Bottle","Collection":[{"Conditional":true,"ConditionalReason":"Beach Bum Update","Show":true,"Name":"Bottle","Url":"bottle","Template":"melee","Mode":"mp","Id":"BOTTLE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":20,"WeaponFireRate":15,"WeaponRange":1,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Bottle.png","Type":"melee","Desc":"It's not clever and it's not pretty but, most of the time, neither is the guy coming at you with a knife. When all else fails, this gets the job done. Part of the Beach Bum Update.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":2,"EnemyKills":0,"Headshots":0,"HeldTime":684836,"Kills":4,"Shots":0,"Hits":4,"KillDeathRatio":"2.00","Attachments":[]}]},{"SubNav":"AntiqueCavalryDagger","Collection":[{"Conditional":true,"ConditionalReason":"I'm Not a Hipster Update","Show":true,"Name":"Antique Cavalry Dagger","Url":"antique-cavalry-dagger","Template":"melee","Mode":"mp","Id":"ANTIQUECAVALRYDAGGER","Bit":0,"WeaponAccuracy":0,"WeaponDamage":20,"WeaponFireRate":20,"WeaponRange":2,"AmmoType":"Hits","Ammo":0,"Image":"W_ME_Dagger.png","Type":"melee","Desc":"You've been rocking the pirate-chic look for a while, but no vicious weapon to complete the look? Get this dagger with guarded hilt.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":6,"EnemyKills":1,"Headshots":0,"HeldTime":276315,"Kills":3,"Shots":0,"Hits":3,"KillDeathRatio":"0.50","Attachments":[]}]},{"SubNav":"hatchet","Collection":[{"Conditional":true,"ConditionalReason":"Exclusive Content","Show":true,"Name":"Hatchet","Url":"hatchet","Template":"melee","Mode":"mp","Id":"HATCHET","Bit":0,"WeaponAccuracy":0,"WeaponDamage":15,"WeaponFireRate":15,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"NG_DLC_W_ME_Hatchet.png","Type":"melee","Desc":"Add a good old-fashioned hatchet to your armory, and always have a back up for when ammo is hard to come by.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":6,"EnemyKills":0,"Headshots":0,"HeldTime":1689016,"Kills":43,"Shots":0,"Hits":48,"KillDeathRatio":"7.17","Attachments":[]}]},{"SubNav":"KnuckleDusters","Collection":[{"Conditional":true,"ConditionalReason":"Ill-Gotten Gains Update Part 2","Show":true,"Name":"Knuckle Dusters","Url":"knuckle-dusters","Template":"melee","Mode":"mp","Id":"KNUCKLEDUSTERS","Bit":0,"WeaponAccuracy":0,"WeaponDamage":5,"WeaponFireRate":20,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Luxe_ME_KnuckleDuster.png","Type":"melee","Desc":"Perfect for knocking out gold teeth, or as a gift to the trophy partner who has everything. Part of The Ill-Gotten Gains Update Part 2.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":9,"EnemyKills":0,"Headshots":0,"HeldTime":1686419,"Kills":6,"Shots":0,"Hits":17,"KillDeathRatio":"0.67","Attachments":[]}]},{"SubNav":"Flashlight","Collection":[{"Conditional":true,"ConditionalReason":"The Halloween Surprise","Show":true,"Name":"Flashlight","Url":"flashlight","Template":"melee","Mode":"mp","Id":"FLASHLIGHT","Bit":0,"WeaponAccuracy":0,"WeaponDamage":10,"WeaponFireRate":15,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Halloween_W_ME_Torch.png","Type":"melee","Desc":"Intensify your fear of the dark with this short range, battery-powered light source. Handy for blunt force trauma. Part of The Halloween Surprise.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":0,"EnemyKills":0,"Headshots":0,"HeldTime":2487705,"Kills":4,"Shots":0,"Hits":11,"KillDeathRatio":"4.00","Attachments":[]}]},{"SubNav":"Machete","Collection":[{"Conditional":true,"ConditionalReason":"Lowriders","Show":true,"Name":"Machete","Url":"machete","Template":"melee","Mode":"mp","Id":"MACHETE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":15,"WeaponFireRate":15,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_LowRider_ME_Machete.png","Type":"melee","Desc":"America's West African arms trade isn't just about giving. Rediscover the simple life with this rusty cleaver. Part of Lowriders.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":0,"Headshots":0,"HeldTime":1056418,"Kills":19,"Shots":0,"Hits":46,"KillDeathRatio":"19.00","Attachments":[]}]},{"SubNav":"Switchblade","Collection":[{"Conditional":true,"ConditionalReason":"Executives and Other Criminals","Show":true,"Name":"Switchblade","Url":"switchblade","Template":"melee","Mode":"mp","Id":"SWITCHBLADE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":15,"WeaponFireRate":20,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Apartments_ME_Switchblade.png","Type":"melee","Desc":"From your pocket to hilt-deep in the other guy's ribs in under a second: folding knives will never go out of style. Part of Executives and Other Criminals.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":0,"Headshots":0,"HeldTime":366280,"Kills":7,"Shots":0,"Hits":12,"KillDeathRatio":"7.00","Attachments":[]}]},{"SubNav":"PoolCue","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Pool Cue","Url":"poolcue","Template":"melee","Mode":"mp","Id":"POOLCUE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":20,"WeaponFireRate":10,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Biker_W_ME_PoolCue.png","Type":"melee","Desc":"Ah, there's no sound as satisfying as the crack of a perfect break, especially when it's the other guy's spine. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":1,"EnemyKills":0,"Headshots":0,"HeldTime":19490,"Kills":0,"Shots":0,"Hits":0,"KillDeathRatio":"0.00","Attachments":[]}]},{"SubNav":"Wrench","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Pipe Wrench","Url":"wrench","Template":"melee","Mode":"mp","Id":"PIPEWRENCH","Bit":0,"WeaponAccuracy":0,"WeaponDamage":10,"WeaponFireRate":15,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Biker_W_ME_Wrench.png","Type":"melee","Desc":"Perennial favourite of apocalyptic surivalists and violent fathers the world over, apparently it also doubles as some kind of tool. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":0,"EnemyKills":0,"Headshots":0,"HeldTime":309867,"Kills":2,"Shots":0,"Hits":15,"KillDeathRatio":"2.00","Attachments":[]}]},{"SubNav":"BattleAxe","Collection":[{"Conditional":true,"ConditionalReason":"Bikers","Show":true,"Name":"Battle Axe","Url":"battleaxe","Template":"melee","Mode":"mp","Id":"BATTLEAXE","Bit":0,"WeaponAccuracy":0,"WeaponDamage":15,"WeaponFireRate":15,"WeaponRange":0,"AmmoType":"Hits","Ammo":0,"Image":"DLC_Biker_W_ME_BattleAxe.png","Type":"melee","Desc":"If it's good enough for medieval foot soldiers, modern border guards and pushy soccer moms, it's good enough for you. Part of Bikers.","UnlockRank":"0","IsUnlocked":true,"IsPurchased":true,"Accuracy":"0","Deaths":0,"EnemyKills":0,"Headshots":0,"HeldTime":72172,"Kills":6,"Shots":0,"Hits":6,"KillDeathRatio":"6.00","Attachments":[]}]}]}]}/*</sl:translate_json>*/;
        settings.nickname = '';
        settings.needleDeg = '139.489096945948deg';
    }
</script>
<div id="sectionWeapons" class="Freemode clearfix">
        <div id="summaryStats" class="page-section">



            <table class="weapon-data-table">
              <tbody>
          <tr>
            <td class="kill-death-ratio" rowspan="2">

              <h5>Kill Death Ratio</h5>
              <div id="weapon-death-dial"><div class="needle"></div></div>
              <p id="KDR"><span class="kills">51814 Kills<br></span><span class="value1">3.44</span><span class="deaths"><br>15048 Deaths</span></p>
            </td>
            <td><h5>Headshots</h5><span class="value1">10,856</span></td>
            <td><h5>Shots Fired</h5><span class="value1">1,079,433</span></td>
            <td><h5>Drive-By Kills</h5><span class="value1">3,343</span></td>
            <td class="last"><h5>Overall Accuracy</h5><span class="value1">19%</span></td>
          </tr>
          <tr>

Note: Look out for the settings.WeaponsJson JavaScript object that holds the information!

Query Parameters:
 
  • slot – needs to be Freeroam
  • socialclub_username (optional) – target (Social Club username) to query defaults to logged in Social Club player

Per weapon statistics

GET /member/(socialclub_name)/games/gtav/api/mp/(weapon_category)/0/(weapon_name)

Returns detailed information for the given weapon such as:

  • general information: damage, fire rate, accuracy and range
  • player data: headshots, shots, hits, kills, deaths, body shots and held time

Example request:

GET /member/restlessnarwhal/games/gtav/api/mp/gun/1/pistol HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "itemData,AmmoType,Name,Desc,attachments",
  "itemData": {
    "damagePercent": 26,
    "fireratePercent": 40,
    "accuracyPercent": 40,
    "ammoPercent": 10,
    "rangePercent": 25,
    "type": "gun",
    "hasAttachments": true,
    "attachmentsCount": 4,
    "attachments": [
      {
        "Name": "Default Clip",
        "Image": "W_PI_Pistol_Mag1",
        "IsPurchased": true,
        "IsUnlocked": true,
        "UnlockRank": 1,
        "Id": "W_PI_PISTOL_MAG1"
      },
      {
        "Name": "Extended Clip",
        "Image": "W_PI_Pistol_Mag2",
        "IsPurchased": true,
        "IsUnlocked": true,
        "UnlockRank": 3,
        "Id": "W_PI_PISTOL_MAG2"
      },
      {
        "Name": "Flashlight",
Parameters:
  • socialclub_name – your Social Club account username
  • weapon_category – name of the weapon category, see list below
  • weapon_name – name of the weapon, see list below

Weapon category/names

To find out the corresponding [WEAPON_CATEGORY] and [WEAPON_NAME] you can check the list below:

Gun
  • pistol
  • combat-pistol
  • ap-pistol
  • pistol-50
  • sns-pistol
  • heavy-pistol
  • vintage-pistol
  • marksman-pistol
  • heavy-revolver
  • flare-gun
  • sawed-off-shotgun
  • pump-shotgun
  • assault-shotgun
  • bullpup-shotgun
  • heavy-shotgun
  • double-barrel
  • sweeper-shotgun
  • micro-smg
  • smg
  • assault-smg
  • gusenberg-sweeper
  • machine-pistol
  • mini-smg
  • mg
  • combat-mg
  • assault-rifle
  • carbine-rifle
  • advanced-rifle
  • bullpup-rifle
  • special-carbine
  • compact-rifle
  • compact-rifle
  • sniper-rifle
  • heavy-sniper
  • minigun
Projectile
  • grenade-launcher
  • rpg
  • firework-launcher
  • compact-gl
Thrown
  • grenade
  • sticky-bomb
  • proximity-mine
  • tear-gas
  • molotov
  • pipe-bomb
  • unarmed
Melee
  • knife
  • nightstick
  • hammer
  • baseball-bat
  • crowbar
  • golf-club
  • bottle
  • antique-cavalry-dagger
  • hatchet
  • knuckle-dusters
  • flashlight
  • machete
  • switchblade
  • poolcue
  • wrench
  • battleaxe

Garage

General information

GET /gtav/GarageAjax?[nickname=(socialclub_username)&]slot=Freemode

Shows stats (name, primary color, secondary color, etc.) of the vehicles in your main (?) garage. Note: The info is hidden in a <script></script>-tag that stored the information as JSON. If you need more information you can also use the per-car requests.

Example request:

GET /gtav/GarageAjax HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
    var settings = window.SCSettings;
    if (settings != undefined) {
        settings.vehicle = 0;
        settings.platform = 12;
        settings.urlformat = '/games/gtav/(platform)/career/garage';
        settings.VehiclesJson = /*<sl:translate_json>*/{"sl_translate":"Name","VehicleCollections":[{"grg":[{"Name":"Imponte Ruiner 2000","Url":"ruiner-2000","Index":0,"VehicleType":"CAR","VehicleImage":"GenericSports","WindowTint":"000000","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"080808","SecondaryColourUnique":false,"Horn":"Horn_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"255,255,255","Exhaust":"","Tires":"TyreArmoured_icon","Suspension":"HydraulicsPlus_icon","Wheel":"wheel_suv_09","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Annis Elegy Retro Custom","Url":"elegy-retro-custom","Index":1,"VehicleType":"CAR","VehicleImage":"Generic2DoorS","WindowTint":"B6B6B6","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"998D73","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"ExhaustPlus_icon","Tires":"TyreArmoured_icon","Suspension":"HydraulicsPlus_icon","Wheel":"wheel_smod_05","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Ocelot Penetrator","Url":"penetrator","Index":2,"VehicleType":"CAR","VehicleImage":"GenericSuper","WindowTint":"696969","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"B01259","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"ExhaustPlus_icon","Tires":"TyreArmoured_icon","Suspension":"","Wheel":"wheel_spt_16","DisplaySecondaryColor":false}]},{"grg":[{"Name":"Karin Kuruma (Armored)","Url":"kuruma2","Index":3,"VehicleType":"CAR","VehicleImage":"GenericSports","WindowTint":"000000","Armour":"Armour4_icon","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"47391B","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light1_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"255,127,0","Exhaust":"Exhaust2_icon","Tires":"TyreArmoured_icon","Suspension":"HydraulicsPlus_icon","Wheel":"wheel_hi_02","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Maibatsu Manchez","Url":"manchez","Index":4,"VehicleType":"BIKE","VehicleImage":"BikeGenericEnduro","WindowTint":"FFFFFF","Armour":"Armour_icon5","PrimaryColour":"6E6246","PrimaryColourUnique":false,"SecondaryColour":"333333","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"ExhaustPlus_icon","Tires":"TyreArmoured_icon","Suspension":"","Wheel":"wheel_bkr_01","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Coil Rocket Voltic","Url":"rocket-voltic","Index":5,"VehicleType":"CAR","VehicleImage":"GenericRocketVoltic","WindowTint":"FFFFFF","Armour":"","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"050505","SecondaryColourUnique":false,"Horn":"","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"","Engine":"","TireSmoke":"255,255,255","Exhaust":"","Tires":"TyreArmoured_icon","Suspension":"","Wheel":"wheel_spt_01","DisplaySecondaryColor":false}]},{"grg":[{"Name":"Benefactor Stirling GT","Url":"stirling-gt","Index":6,"VehicleType":"CAR","VehicleImage":"GenericSportsClassic","WindowTint":"B6B6B6","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"080000","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"ExhaustPlus_icon","Tires":"TyreArmoured_icon","Suspension":"HydraulicsPlus_icon","Wheel":"wheel_drft_02","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Pegassi Zentorno","Url":"zentorno","Index":7,"VehicleType":"CAR","VehicleImage":"GenericSuper","WindowTint":"FFFFFF","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"998D73","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"255,127,0","Exhaust":"ExhaustPlus_icon","Tires":"TyreArmoured_icon","Suspension":"","Wheel":"wheel_hi_09","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Pegassi Tempesta","Url":"tempesta","Index":8,"VehicleType":"CAR","VehicleImage":"GenericSuper","WindowTint":"696969","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"A2A827","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"Exhaust1_icon","Tires":"TyreArmoured_icon","Suspension":"","Wheel":"wheel_spt_01","DisplaySecondaryColor":true}]},{"grg":[{"Name":"Pegassi Reaper","Url":"reaper","Index":9,"VehicleType":"CAR","VehicleImage":"GenericSuper","WindowTint":"B6B6B6","Armour":"Armour_icon5","PrimaryColour":"FFFFFF","PrimaryColourUnique":true,"SecondaryColour":"568F00","SecondaryColourUnique":false,"Horn":"HornPlus_icon","Light":"Light2_icon","Turbo":"Turbo_icon","Brakes":"BrakesPlus_icon","Engine":"Engine4_icon","TireSmoke":"20,20,20","Exhaust":"","Tires":"TyreArmoured_icon","Suspension":"HydraulicsPlus_icon","Wheel":"wheel_spt_01","DisplaySecondaryColor":true}]}]}/*</sl:translate_json>*/;
        settings.nickname = '';
    }
</script>

<div id="sectionVehicles" class="Freemode clearfix">


        <div id="garageWrapper" class="page-section clearfix" style="display:none;">
        <div class="full-width bg-grad clearfix">
                <h2 class="left">GTA Online Garage</h2>
        </div>
      </div>

    <div class="content">
        <div id="vehicle-container"></div>
    <div class="panel-load"></div>
    </div>
</div>

Note: Look out for the settings.VehiclesJson JavaScript object that holds the information!

Query Parameters:
 
  • slot – needs to be Freeroam
  • socialclub_username (optional) – target (Social Club username) to query defaults to logged in Social Club player

Detailed information per car

GET /member/(socialclub_name)/games/gtav/api/garage/gtaonline/(car_id)

This will also show additional specs of the car (acceleration, handling, braking, etc.) as well as the mod information about lights (xeon/non-xeon), suspension and more. Make sure to replace “[0-9]” with a number between 0 and 9. The numbers represent the order of the previously used cars (like the iFruit app).

Example request:

GET /member/restlessnarwhal/games/gtav/api/garage/gtaonline/0 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "CarModel,CarColourName,CarColour1Name,CarColour2Name,TyreSmokeEnabled,BulletProofTyres,CarEngine,CarTurbo,CarArmour,CarBrakes,WindowTintName,CarSuspension,CarWheel,CarExhaust,CarHorn,CarXenonLights",
  "vehicleData": {
    "CarModel": "Imponte Ruiner 2000",
    "CarImage": "ruiner-2000",
    "CarType": "CAR",
    "Acceleration": 82.500008,
    "Speed": 81.555809,
    "Braking": 33.333336,
    "Handling": 63.636364,
    "ModAcceleration": 100.0,
    "ModBraking": 35.333336,
    "ModCategory": "GenericSports",
    "CarColour1Name": "Unique Color",
    "CarColour1Hex": "FFFFFF",
    "CarColour2Name": "Black",
    "CarColour2Hex": "080808",
    "TyreSmokeEnabled": "White Smoke",
    "TyreSmoke": "255,255,255",
    "BulletProofTyres": "Bulletproof Tires",
    "CarEngine": "EMS Upgrade, Level 4",
    "CarTurbo": "Turbo Tuning",
    "CarArmour": "Armor Upgrade 100%",
    "CarBrakes": "Race Brakes",
    "WindowTintName": "Limo",
    "WindowTintHex": "000000",
    "CarSuspension": "Competition Suspension",
    "CarWheel": "Cognoscenti",
    "CarExhaust": "",
    "CarHorn": "Stock Horn",
Parameters:
  • socialclub_name – your Social Club account username
  • car_id – id of the car, can be 0-9

Vehicles

General information

GET /gtav/VehiclesAjax?[nickname=(socialclub_username)&category=(category)&]slot=Freemode

General information about driven vehicles ingame: fastest speed, amount of stolen vehicles, farthest jump, and more.

Example request:

GET /gtav/VehiclesAjax HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
    var settings = window.SCSettings;
    if (settings != undefined) {
        settings.category = 'sports';
        settings.platform = 12;
        settings.urlformat = '/games/gtav/(platform)/career/vehicles';
        settings.VehiclesJson =  /*<sl:translate_json>*/{"sl_translate":"VehicleCollections,Vehicles,Name,Conditional","sl_variant":"Conditional:gtavdlcname","VehicleCollections":[{"Name":"Boats","Url":"boats"},{"Name":"Commercial","Url":"commercial"},{"Name":"Compacts","Url":"compacts"},{"Name":"Coupes","Url":"coupes"},{"Name":"Cycles","Url":"cycles"},{"Name":"Emergency","Url":"emergency"},{"Name":"Helicopters","Url":"helicopters"},{"Name":"Industrial","Url":"industrial"},{"Name":"Military","Url":"military"},{"Name":"Motorcycles","Url":"motorcycles"},{"Name":"Muscle","Url":"muscle"},{"Name":"Off-Road","Url":"off-road"},{"Name":"Planes","Url":"planes"},{"Name":"Sedans","Url":"sedans"},{"Name":"Service","Url":"service"},{"Name":"Sports","Url":"sports","TotalVehicles":45,"Vehicles":[{"Name":"Obey 9F","Url":"9f","Type":"CAR","Speed":83.165451,"Acceleration":82.500008,"Braking":33.333336,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$120K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$12K"},{"Name":"Obey 9F Cabrio","Url":"9f-cabrio","Type":"CAR","Speed":83.165451,"Acceleration":82.500008,"Braking":33.333336,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$130K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$13K"},{"Name":"Albany Alpha","Url":"alpha","Type":"CAR","Conditional":"Business Update","Speed":83.165451,"Acceleration":85,"Braking":33.333336,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$150K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$15K"},{"Name":"Bravado Banshee","Url":"banshee","Type":"CAR","Speed":79.409599,"Acceleration":85,"Braking":33.333336,"Handling":73.333336,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net, www.bennysoriginalmotorworks.com","Cost":"$105K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$10.5K"},{"Name":"Bravado Banshee Topless","Url":"banshee2","Type":"CAR","Conditional":"High Life Update","Speed":79.409599,"Acceleration":85,"Braking":33.333336,"Handling":73.333336,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$126K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$12.6K"},{"Name":"Grotti Bestia GTS","Url":"bestiagts","Type":"CAR","Conditional":"Further Adventures in Finance and Felony","Speed":83.165451,"Acceleration":79.999992,"Braking":33.333336,"Handling":73.333336,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.com","Cost":"$610K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$61K"},{"Name":"Dinka Blista Compact","Url":"blista-compact","Type":"CAR","Conditional":"Exclusive Content","Speed":70.824776,"Acceleration":57.5,"Braking":18.333334,"Handling":63.636364,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"FREE*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$0"},{"Name":"Bravado Buffalo","Url":"buffalo","Type":"CAR","Speed":77.799942,"Acceleration":67.5,"Braking":29.999998,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$35K","Seats":4,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$3,500"},{"Name":"Bravado Buffalo S","Url":"buffalo2","Type":"CAR","Speed":77.799942,"Acceleration":72.5,"Braking":29.999998,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$96K","Seats":4,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$9,600"},{"Name":"Grotti Carbonizzare","Url":"carbonizzare","Type":"CAR","Speed":84.775108,"Acceleration":87.5,"Braking":26.666668,"Handling":72.121216,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$195K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$19.5K"},{"Name":"Pfister Comet","Url":"comet-mp","Type":"CAR","Speed":81.555809,"Acceleration":85,"Braking":26.666668,"Handling":78.787872,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.bennysoriginalmotorworks.com","Cost":"$100K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$10K"},{"Name":"Pfister Comet Retro Custom","Url":"comet-retro-custom","Type":"CAR","Conditional":"Import/Export","Speed":81.555809,"Acceleration":85,"Braking":26.666668,"Handling":90.045456,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":true,"ForSale":false,"Cost":"$645K*","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$64.5K"},{"Name":"Invetero Coquette","Url":"coquette","Type":"CAR","Speed":81.555809,"Acceleration":82.500008,"Braking":26.666668,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$138K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$13.8K"},{"Name":"Invetero Coquette","Url":"coquette2","Type":"CAR","Conditional":"High Life Update","Speed":81.555809,"Acceleration":82.500008,"Braking":26.666668,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$159K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$15.9K"},{"Name":"Declasse Drift Tampa","Url":"drift-tampa","Type":"CAR","Conditional":"Cunning Stunts","Speed":80.48,"Acceleration":82.5,"Braking":16.67,"Handling":68.18,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$995K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$99.5K"},{"Name":"Annis Elegy Retro Custom","Url":"elegy-retro-custom","Type":"CAR","Conditional":"Import/Export","Speed":79.409599,"Acceleration":82.500008,"Braking":33.333336,"Handling":81.818184,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":false,"Cost":"$575K*","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$57.5K"},{"Name":"Annis Elegy RH8","Url":"elegy-rh8-mp","Type":"CAR","Conditional":"Social Club","Speed":81.555809,"Acceleration":82.500008,"Braking":16.666668,"Handling":81.818184,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net, www.bennysoriginalmotorworks.com","Cost":"FREE*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$0"},{"Name":"Benefactor Feltzer","Url":"feltzer","Type":"CAR","Speed":82.092354,"Acceleration":85,"Braking":26.666668,"Handling":80.30304,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$145K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$14.5K"},{"Name":"Lampadati Furore GT","Url":"furoregt","Type":"CAR","Conditional":"Last Team Standing Update","Speed":81.555809,"Acceleration":83.75,"Braking":26.666668,"Handling":77.575752,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$448K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$44.8K"},{"Name":"Schyster Fusilade","Url":"fusilade","Type":"CAR","Speed":79.946152,"Acceleration":79.999992,"Braking":29.999998,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$36K","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$3,600"},{"Name":"Karin Futo","Url":"futo","Type":"CAR","Speed":72.434425,"Acceleration":72.5,"Braking":16.666668,"Handling":62.121212,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":false,"Cost":"$9,000","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$900"},{"Name":"Dinka Jester","Url":"jester","Type":"CAR","Conditional":"Business Update","Speed":84.775108,"Acceleration":75,"Braking":31.666666,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$240K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$24K"},{"Name":"Dinka Jester (Racecar)","Url":"jester2","Type":"CAR","Conditional":"Festive Surprise","Speed":84.775108,"Acceleration":77.5,"Braking":31.666666,"Handling":77.878784,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$350K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$35K"},{"Name":"Hijak Khamelion","Url":"khamelion","Type":"CAR","Speed":75.11718,"Acceleration":37.5,"Braking":29.999998,"Handling":78.787872,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"FREE","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$0"},{"Name":"Karin Kuruma","Url":"kuruma","Type":"CAR","Conditional":"Heists","Speed":78.873047,"Acceleration":77.5,"Braking":16.666668,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$74K*","Seats":4,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$7,400"},{"Name":"Karin Kuruma (Armored)","Url":"kuruma2","Type":"CAR","Conditional":"Heists","Speed":78.873047,"Acceleration":77.5,"Braking":16.666668,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$74K*","Seats":4,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$7,400"},{"Name":"Ocelot Lynx","Url":"lynx","Type":"CAR","Conditional":"Cunning Stunts","Speed":84.24,"Acceleration":78.75,"Braking":33.33,"Handling":77.58,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$1.7M*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$173.5K"},{"Name":"Dewbauchee Massacro","Url":"massacro","Type":"CAR","Conditional":"High Life Update","Speed":82.092354,"Acceleration":90.25,"Braking":29.999998,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$275K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$27.5K"},{"Name":"Dewbauchee Massacro (Racecar)","Url":"massacro2","Type":"CAR","Conditional":"Festive Surprise","Speed":83.809319,"Acceleration":91,"Braking":29.999998,"Handling":73.636368,"TopSpeed":false,"TopAcceleration":true,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$385K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$38.5K"},{"Name":"Obey Omnis","Url":"omnis","Type":"CAR","Conditional":"Cunning Stunts","Speed":81.56,"Acceleration":76.25,"Braking":33.33,"Handling":64.85,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$701K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$70.1K"},{"Name":"Maibatsu Penumbra","Url":"penumbra","Type":"CAR","Speed":75.11718,"Acceleration":55,"Braking":26.666668,"Handling":68.181816,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$24K","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$2,400"},{"Name":"Dewbauchee Rapid GT","Url":"rapid-gt","Type":"CAR","Speed":81.555809,"Acceleration":90,"Braking":33.333336,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$132K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$13.2K"},{"Name":"Dewbauchee Rapid GT","Url":"rapid-gt2","Type":"CAR","Speed":81.555809,"Acceleration":90,"Braking":33.333336,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$140K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$14K"},{"Name":"BF Raptor","Url":"raptor","Type":"CAR","Conditional":"Bikers","Speed":75.11718,"Acceleration":73.749992,"Braking":40,"Handling":78.787872,"TopSpeed":false,"TopAcceleration":false,"TopBraking":true,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$648K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$64.8K"},{"Name":"Benefactor Schafter LWB","Url":"schafter4","Type":"CAR","Conditional":"Executives and Other Criminals","Speed":76.190292,"Acceleration":50,"Braking":28.333334,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$95K*","Seats":4,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$9,500"},{"Name":"Benefactor Schafter V12","Url":"schafter3","Type":"CAR","Conditional":"Executives and Other Criminals","Speed":80.482697,"Acceleration":75,"Braking":31.666666,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$95K*","Seats":4,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$9,500"},{"Name":"Benefactor Schwartzer","Url":"schwartzer","Type":"CAR","Speed":78.873047,"Acceleration":72.5,"Braking":29.999998,"Handling":69.696968,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$80K","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$8,000"},{"Name":"Dewbauchee Seven-70","Url":"seven70","Type":"CAR","Conditional":"Further Adventures in Finance and Felony","Speed":85.311661,"Acceleration":83.75,"Braking":33.333336,"Handling":77.575752,"TopSpeed":true,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.com","Cost":"$695K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$69.5K"},{"Name":"Dewbauchee Specter","Url":"specter","Type":"CAR","Conditional":"Import/Export","Speed":83.165451,"Acceleration":79.999992,"Braking":33.333336,"Handling":79.393936,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.bennysoriginalmotorworks.com","Cost":"$874K*","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$87.4K"},{"Name":"Dewbauchee Specter Custom","Url":"specter-custom","Type":"CAR","Conditional":"Import/Export","Speed":83.272758,"Acceleration":82.500008,"Braking":36.666668,"Handling":85.864777,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":false,"Cost":"$395K*","Seats":2,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$39.5K"},{"Name":"Bravado Sprunk Buffalo","Url":"buffalo-sprunk-mp","Type":"CAR","Conditional":"Cunning Stunts","Speed":78.873047,"Acceleration":77.5,"Braking":33.333336,"Handling":74.242424,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$535K*","Seats":4,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$53.5K"},{"Name":"Karin Sultan","Url":"sultan","Type":"CAR","Speed":77.799942,"Acceleration":65,"Braking":13.333334,"Handling":71.21212,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.bennysoriginalmotorworks.com","Cost":"$12K","Seats":4,"Personal":true,"Premium":false,"Moddable":true,"SuperModdable":true,"Sellable":true,"SellPrice":"$1,200"},{"Name":"Benefactor Surano","Url":"surano","Type":"CAR","Speed":83.165451,"Acceleration":85,"Braking":33.333336,"Handling":77.272728,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$110K","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$11K"},{"Name":"Lampadati Tropos Rallye","Url":"tropos","Type":"CAR","Conditional":"Cunning Stunts","Speed":81.56,"Acceleration":56.25,"Braking":23.33,"Handling":62.12,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.southernsanandreassuperautos.com","Cost":"$816K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$81.6K"},{"Name":"Bravado Verlierer","Url":"verlierer","Type":"CAR","Conditional":"Executives and Other Criminals","Speed":80.482697,"Acceleration":83.75,"Braking":33.333336,"Handling":73.636368,"TopSpeed":false,"TopAcceleration":false,"TopBraking":false,"TopHandling":false,"ForSale":true,"Website":"www.legendarymotorsport.net","Cost":"$95K*","Seats":2,"Personal":true,"Premium":true,"Moddable":true,"SuperModdable":false,"Sellable":true,"SellPrice":"$9,500"}]},{"Name":"Sports Classics","Url":"sports-classics"},{"Name":"Super","Url":"super"},{"Name":"SUVs","Url":"suvs"},{"Name":"Utility","Url":"utility"},{"Name":"Vans","Url":"vans"}],"Mode":"mp"} /*</sl:translate_json>*/;
        settings.nickname = '';
        settings.needleDeg = '180deg';
    }
</script>

<div id="sectionVehicles" class="Freemode clearfix">

  <div id="summaryStats" class="page-section clearfix">
        <table class="vehicle-data-table">
            <tbody>
        <tr>
          <td class="max-speed" rowspan="2">
            <h5>Fastest Speed</h5>
            <div id="vehicle-dial"><div class="needle" style="-webkit-transform: rotate(0deg); -webkit-transition: all 2s ease-out; transition: all 2s ease-out;"></div></div>
            <p>9F<br><span>311.65 mph</span></p>
          </td>
          <td><h5>Vehicles Stolen</h5><span class="value1">4,630</span></td>
          <td><h5>Vehicles Destroyed</h5><span class="value1">14.5K</span></td>
          <td><h5>Farthest Jump</h5><span class="value1">4,156.24 ft</span></td>
          <td class="last"><h5>Time Flying</h5><span class="value1">84:48:14</span></td>
        </tr>
        <tr>
          <td colspan="2" class="value2"><i class="gtavicon-shortcut"></i> 56545 Near Misses</td>

Note: Look out for the settings.VehiclesJson JavaScript object that holds the information!

Query Parameters:
 
  • slot – needs to be Freeroam
  • socialclub_username (optional) – target (Social Club username) to query defaults to logged in Social Club player
  • category (optional) – vehicle category, defaults to sports, allowed categories: boats, commercial, compacts, coupes, cycles, helicopters, industrial, military, motorcycles, muscle, off-road, planes, sedans, service, sports, sports-classic, super, suvs, utility, vans

Per vehicle

GET /member/(socialclub_name)/games/gtav/api/gtaonline/(vehicle_category)/(vehicle_name)

This gives you general information about all the vehicles in the GTA world. Speed, acceleration, amount of seats, if it’s a moddable vehicle, if it’s storable or sellable, etc.

(For a full list of categories and vehicle names go to Social Club and navigate to “Vehicles”)

Example request:

GET /member/restlessnarwhal/games/gtav/api/gtaonline/sports/9f HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "vehicleData": {
    "speedPercent": 83.165451,
    "accelerationPercent": 82.500008,
    "brakingPercent": 33.333336,
    "handlingPercent": 77.272728,
    "description": null,
    "image": null,
    "name": "9F",
    "manufacturer": "Obey",
    "type": "CAR",
    "Seats": 2,
    "Personal": true,
    "Moddable": true,
    "SuperModdable": false,
    "Premium": true,
    "ForSale": true,
    "Cost": "$120K",
    "Website": "www.legendarymotorsport.net",
    "Sellable": true,
    "SellPrice": "$12K"
  }
}
Query Parameters:
 
  • socialclub_name – your Social Club account username
  • vehicle_category – name of the vehicle category
  • vehicle_name – name of the vehicle

Awards

GET /games/gtav/career/AwardsAjax?[nickname=(socialclub_username)&category=(category)&]slot=Freemode

Gives you information about the earned awards and it’s completion statuses.

Example request:

GET /games/gtav/career/AwardsAjax?slot=Freemode&nickname=restlessnarwhal HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<script>
    if(window.SCSettings){
        window.SCSettings.platform = 12;
        window.SCSettings.urlformat = '/games/gtav/(platform)/career/awards';
        window.SCSettings.nickname = '';
    }
</script>


    <div id="page-header" class="clearfix">
        <div class="page-section">
            <div id="awards-overview" class="bg-alpha clearfix">
                <p class="left awardsAchieved" id="awardsAchieved_victory" style=""><span class="title">Victory</span> 12 <span>/ 33</span></p><p class="left awardsAchieved" id="awardsAchieved_general" style=" display:none"><span class="title">General</span> 14 <span>/ 28</span></p><p class="left awardsAchieved" id="awardsAchieved_crimes" style=" display:none"><span class="title">Crimes</span> 6 <span>/ 6</span></p><p class="left awardsAchieved" id="awardsAchieved_vehicles" style=" display:none"><span class="title">Vehicles</span> 10 <span>/ 10</span></p><p class="left awardsAchieved" id="awardsAchieved_combat" style=" display:none"><span class="title">Combat</span> 22 <span>/ 25</span></p><p class="left awardsAchieved" id="awardsAchieved_heists" style=" display:none"><span class="title">Heists</span> 14 <span>/ 20</span></p><p class="left awardsAchieved" id="awardsAchieved_rewards" style=" display:none"><span class="title">Rewards</span> 23 <span>/ 48</span></p>
                    <select id="awards-dropdown"><option value="victory">Victory</option><option value="general">General</option><option value="crimes">Crimes</option><option value="vehicles">Vehicles</option><option value="combat">Combat</option><option value="heists">Heists</option><option value="rewards">Rewards</option></select>
            </div>

            <div class="clearfix">

                <ul class="gridRow clearfix awardsList"  id="awardsList_victory">

                            <li class="span5col bronze"  data-name="The Slayer" data-award="Bronze" data-comment="You will gain more RP if you place in the top 3. The better you perform, the higher the bonus. Earn a tattoo by winning Deathmatches." data-onetime="False" data-value="3" data-target="5" data-complete="False">
                                <div class="well clearfix clicked">
                                    <img src="https://cdn.sc.rockstargames.com/images/games/GTAV/multiplayer/award/bronze/DeathmatchWin.png" alt="" />
                                    <div class="awardText">
                                        <p class="award-name">The Slayer</p>

                                            <div class="award-progress">
                                                <div class="progress-bar">
                                                    <span style="width:60%">60%</span>
                                                </div>
Query Parameters:
 
  • slot – needs to be Freeroam
  • socialclub_username (optional) – target (Social Club username) to query defaults to logged in Social Club player
  • category (optional) – vehicle category, defaults to victory, allowed categories: victory, general, crimes, vehicles, heists, rewards

General

Activity counts

GET /jsonp/activitycounts

Show counter and counts of personal profile activities: crew invites, friend requests, unread private messages and unread notifications.

Example request:

GET /jsonp/activitycounts HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 0,
  "CrewInvitesCount": 0,
  "FriendInvitesCount": 0,
  "PrivateMessageUnreadCount": 0,
  "NotificationUnreadCount": 0,
  "sl_translate": "ErrorText,MessageText",
  "Status": true
}

Minigames

Returns information about several minigames. Unfortunately you can’t access the stats of other players, so all the requests below return your own (the account who authorized the requests) statistics.

Darts

GET /games/gtav/api/minigames/sport?minigame=darts&slot=Freemode

Example request:

GET /games/gtav/api/minigames/sport?minigame=darts&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 190,
    "Name": "darts",
    "DisplayName": "Darts",
    "GroupName": "sport",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "NUM_BULLS_EYE",
            "Value": "N/A",
            "NameLocalised": "Number of bullseyes"
          },
          {
            "Name": "NUM_180S",
            "Value": "N/A",
            "NameLocalised": "Number of 180's"
          },
          {
            "Value": "N/A",
            "NameLocalised": "Won / Lost"
          }
        ]
      }
    ],
    "HasMedals": true,
    "Medals": {}
Query Parameters:
 
  • slot – needs to be Freeroam

Arm wrestling

GET /games/gtav/api/minigames/sport?minigame=armwrestling&slot=Freemode

Example request:

GET /games/gtav/api/minigames/sport?minigame=armwrestling&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 749,
    "Name": "armwrestling",
    "GroupName": "sport",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "WIN_STREAK",
            "Value": "1",
            "NameLocalised": "Winning streak"
          },
          {
            "Name": "FASTEST_WIN_TIME",
            "Value": "00:02.845",
            "NameLocalised": "Fastest win time"
          },
          {
            "Value": "1 / 0",
            "NameLocalised": "Won / Lost"
          }
        ]
      }
    ],
    "HasMedals": true,
    "Medals": {}
  },
Query Parameters:
 
  • slot – needs to be Freeroam

Flight school

GET /games/gtav/api/minigames/sport?minigame=flightschool&slot=Freemode

Example request:

GET /games/gtav/api/minigames/sport?minigame=flightschool&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 965,
    "Name": "flightschool",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": []
      }
    ],
    "HasMedals": true,
    "Medal": "",
    "Medals": {
      "Medal": [
        {
          "Type": "gold",
          "Value": "00:58.000"
        },
        {
          "Type": "silver",
          "Value": "01:20.000"
        },
        {
          "Type": "bronze",
          "Value": "02:00.000"
        }
      ]
    }
Query Parameters:
 
  • slot – needs to be Freeroam

Golf

GET /games/gtav/api/minigames/sport?minigame=golf&slot=Freemode

Example request:

GET /games/gtav/api/minigames/sport?minigame=golf&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 193,
    "Name": "golf",
    "DisplayName": "Golf",
    "GroupName": "sport",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "HOLE_1_DRIVE",
            "Value": "214.00 yd",
            "NameLocalised": "Drive Distance"
          },
          {
            "Name": "HOLE_1_PUTT",
            "Value": "10.00 ft",
            "NameLocalised": "Putt Distance"
          },
          {
            "Name": "HOLE_1_SHOTS",
            "Value": "7",
            "NameLocalised": "Number of shots"
          }
        ]
      },
      {
        "Stats": [
Query Parameters:
 
  • slot – needs to be Freeroam

Tennis

GET /games/gtav/api/minigames/sport?minigame=tennis&slot=Freemode

Example request:

GET /games/gtav/api/minigames/sport?minigame=tennis&slot=Freemode HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 283,
    "Name": "tennis",
    "DisplayName": "Tennis",
    "GroupName": "sport",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "MATCHES_WON",
            "Value": "0",
            "NameLocalised": "Matches won"
          },
          {
            "Name": "NUMBER_ACES",
            "Value": "1",
            "NameLocalised": "Number of aces"
          },
          {
            "Value": "0 / 6",
            "NameLocalised": "Won / Lost"
          }
        ]
      }
    ],
    "HasMedals": true,
    "Medals": {}
Query Parameters:
 
  • slot – needs to be Freeroam

Shooting range

Show stats about shooting range challenges.

Hand Guns

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=pistols&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=pistols&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "84",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "48",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "57.14%",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "1",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be pistols
  • challenge – target challenge, allowed challenges: random, grid or covered

Submachine Guns

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=smgs&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=smgs&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "N/A",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "N/A",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "N/A",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "N/A",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be smgs
  • challenge – target challenge, allowed challenges: random, grid or covered

Assault Rifles

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=assaultrifles&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=assaultrifles&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "N/A",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "N/A",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "N/A",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "N/A",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be assaultrifles
  • challenge – target challenge, allowed challenges: random, grid or covered

Shotguns

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=shotguns&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=shotguns&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "N/A",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "N/A",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "N/A",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "N/A",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be shotguns
  • challenge – target challenge, allowed challenges: random, grid or covered

Light Machine Guns

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=lmgs&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=lmgs&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "N/A",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "N/A",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "N/A",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "N/A",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be lmgs
  • challenge – target challenge, allowed challenges: random, grid or covered
  • Heavy:
GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=heavies&challenge=(challenge_type)

Example request:

GET /games/gtav/api/minigames/challenges?minigame=shootingrange&slot=Freemode&weapon=heavies&challenge=random HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "NameLocalised,DisplayName,Description,Value",
  "sl_path_variant": "Minigames/MinigameGroup/1/Minigames/0/Challenges/0/Challenge/6/DisplayName|fsShootingRange",
  "Leaderboard": {
    "Id": 912,
    "Name": "shootingrange",
    "GroupName": "activity",
    "StatGroups": [
      {
        "Stats": [
          {
            "Name": "TOTAL_SHOTS_FIRED",
            "Value": "N/A",
            "NameLocalised": "Total Shots Fired"
          },
          {
            "Name": "TOTAL_SHOTS_HIT",
            "Value": "N/A",
            "NameLocalised": "Total Shots Hit"
          },
          {
            "Name": "TOTAL_ACCURACY",
            "Value": "N/A",
            "NameLocalised": "Total Accuracy"
          },
          {
            "Name": "MATCHES_WON",
            "Value": "N/A",
            "NameLocalised": "Matches won"
          },
Query Parameters:
 
  • slot – needs to be Freeroam
  • minigame – needs to be shootingrange
  • weapon – needs to be heavies
  • challenge – target challenge, allowed challenges: random, grid or covered

Explore crews

List crews

GET /crewsapi/SearchCrews?crewType=(crew_type)&openCrewFilter=(open_filter)&systemCrewFilter=(system_filter)

Example request:

GET /crewsapi/SearchCrews?crewType=thrillSeekers&openCrewFilter=-1&systemCrewFilter=-1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 36,
  "HasMore": true,
  "PageIndex": 0,
  "HasMaxCrewMemberships": true,
  "Crews": [
    {
      "MemberId": 0,
      "CrewId": 22998986,
      "CrewName": "W-PC Family lll",
      "NameStripped": "w-pc_family_lll",
      "CrewTag": "WPCF",
      "CrewMotto": "W-PC.RU           vk.com wpcfamily",
      "CrewUrl": "/crew/w-pc_family_lll",
      "MemberCount": 1000,
      "FormattedMemberCount": "1,000",
      "IsPrivate": true,
      "IsPrimary": false,
      "RankOrder": -1,
      "CrewType": "thrillSeekers",
      "IsFounderCrew": false,
      "FriendCount": 0,
      "IsSystemPrivate": false,
      "IsOpen": false,
      "Dev": false,
      "CrewColour": "#b005ff",
      "Division": "601-1000",
      "HasMembers": false,
      "HasBannedPlayers": false,
      "HasJoinRequests": false,
Query Parameters:
 
  • crew_type (optional) – display only a certain crew type, allowed values: open, chatterBoxes, thrillSeekers, rebels, soldiers, allStars and empty value (anything)
  • open_filter – search only open crews, allowed values: -1 for false (open and closed crews), 1 for true (only open)
  • system_filter – display only Rockstar crews, allowed values: -1 for false (only official Rockstar crews), 1 for true (also player created crews)

Search crews

GET /crewsapi/SearchCrews?searchTerm=(search_term)&crewType=(crew_type)&openCrewFilter=(open_filter)&systemCrewFilter=(system_filter)

Example request:

GET /crewsapi/SearchCrews?searchTerm=rebl&crewType=thrillSeekers&openCrewFilter=1&systemCrewFilter=-1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 17,
  "HasMore": false,
  "PageIndex": 0,
  "HasMaxCrewMemberships": true,
  "Crews": [
    {
      "MemberId": 0,
      "CrewId": 745005,
      "CrewName": "Grove Street Rebles",
      "NameStripped": "grove_street_rebles",
      "CrewTag": "GSR1",
      "CrewMotto": "Money grind.",
      "CrewUrl": "/crew/grove_street_rebles",
      "MemberCount": 38,
      "FormattedMemberCount": "38",
      "IsPrivate": true,
      "IsPrimary": false,
      "RankOrder": -1,
      "CrewType": "thrillSeekers",
      "IsFounderCrew": false,
      "FriendCount": 0,
      "IsSystemPrivate": false,
      "IsOpen": true,
      "Dev": false,
      "CrewColour": "#17ff3e",
      "Division": "21-50",
      "HasMembers": false,
      "HasBannedPlayers": false,
      "HasJoinRequests": false,
Query Parameters:
 
  • search_term – The term you want to look for
  • crew_type (optional) – display only a certain crew type, allowed values: open, chatterBoxes, thrillSeekers, rebels, soldiers, allStars and empty value (anything)
  • open_filter – search only open crews, allowed values: -1 for false (open and closed crews), 1 for true (only open)
  • system_filter – display only Rockstar crews, allowed values: -1 for false (only official Rockstar crews), 1 for true (also player created crews)

Display allies

GET /crewsapi/GetCrewsWithFriends

List all ally crews (crews of your friends).

Example request:

GET /crewsapi/GetCrewsWithFriends HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 22,
  "Crews": [
    {
      "MemberId": 0,
      "CrewId": 7058755,
      "CrewName": "GTAAdventures",
      "NameStripped": "gtaadventures",
      "CrewTag": "GTAA",
      "CrewMotto": "Reddit crew: We don't shoot you and take your money.",
      "CrewUrl": "/crew/gtaadventures",
      "MemberCount": 844,
      "FormattedMemberCount": "844",
      "IsPrivate": true,
      "IsPrimary": false,
      "RankOrder": -1,
      "CrewType": "soldiers",
      "IsFounderCrew": false,
      "FriendCount": 1,
      "IsSystemPrivate": false,
      "IsOpen": false,
      "Dev": false,
      "CrewColour": "#FF4400",
      "Division": "601-1000",
      "HasMembers": false,
      "HasBannedPlayers": false,
      "HasJoinRequests": false,
      "CanViewManagePage": false,
      "CanEditCrewSettings": false,
      "CanInvite": false,

Overview

General information

GET /crew/(crew_name)

Shows general information about the crew, like the crew ID which is importent for a bunch of other requests, crew tag, the crew logo, rank titles as well as the permissions.

Example request:

GET /crew/rebl_xb1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<!doctype html>



<html class="no-js" lang="en">

<head data-template-set="html5-reset">

    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>Rockstar Games Social Club - Crew : REBL XB1</title>
    <meta name="title" content="Rockstar Games Social Club Crew : REBL XB1">
    <meta name="keywords" content="Rockstar Games, Social Club, Rockstar">
    <meta name="description" content="Rockstar Games Social Club">
    <meta name="google-site-verification" content="">
    <meta name="author" content="Rockstar North">
    <meta name="copyright" content="Rockstar Games 2017. All Rights Reserved.">
    <meta name="msapplication-config" content="none">


    <meta name="DC.title" content="Rockstar Games Social Club">
    <meta name="DC.subject" content="Rockstar Games, Social Club, Rockstar">
    <meta name="DC.creator" content="Rockstar North">


    <meta http-equiv="cleartype" content="on">


        <meta name="robots" content="all">

Parameters:
  • crew_name – target crew

Emblems

GET /crew/(crew_name)

Returns the first four crew emblems and it’s image location.

(Caution: data hidden somewhere in <script> tags)

Example request:

GET /crew/rebl_xb1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

<!doctype html>



<html class="no-js" lang="en">

<head data-template-set="html5-reset">

    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>Rockstar Games Social Club - Crew : REBL XB1</title>
    <meta name="title" content="Rockstar Games Social Club Crew : REBL XB1">
    <meta name="keywords" content="Rockstar Games, Social Club, Rockstar">
    <meta name="description" content="Rockstar Games Social Club">
    <meta name="google-site-verification" content="">
    <meta name="author" content="Rockstar North">
    <meta name="copyright" content="Rockstar Games 2017. All Rights Reserved.">
    <meta name="msapplication-config" content="none">


    <meta name="DC.title" content="Rockstar Games Social Club">
    <meta name="DC.subject" content="Rockstar Games, Social Club, Rockstar">
    <meta name="DC.creator" content="Rockstar North">


    <meta http-equiv="cleartype" content="on">


        <meta name="robots" content="all">

Parameters:
  • crew_name – target crew

Crew feed

GET /reference/crewfeed/(crew_id)

Structured JSON data of all the crew feed messages and events.

Example request:

GET /reference/crewfeed/20242331 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "ugcType",
  "count": 15,
  "activities": [
    {
      "metaId": 0,
      "numLikes": 0,
      "type": "CREW_MESSAGE",
      "actorMeta": {
        "image": "n/awood785",
        "type": "Person",
        "id": "12421866",
        "name": "awood785"
      },
      "comments": [],
      "activityId": "3123214263874973259",
      "time": 1484449397,
      "actorId": "12421866",
      "data": {
        "body": "REBL session happening now - join awood785!  Playlist is starting in about 10 minutes!",
        "toMeta": {
          "url": "/crew/rebl_xb1",
          "image": "default.png",
          "type": "Crew",
          "id": "20242331",
          "name": "REBL XB1"
        }
      },
      "numComments": 0
    },
Parameters:
  • crew_id – target crew ID

Snapmatic pictures

GET /crewapi/(crew_name)/gtav/photo

Returns the four latest crew snapmatic pictures as well as the total count.

Example request:

GET /crewapi/rebl_xb1/gtav/photo HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "photos": [
    {
      "Meta": {
        "CreatedTimestamp": 1465386444,
        "Name": "Pillbox Hill",
        "HardTags": [
          "#PillboxHill"
        ],
        "UserTags": [],
        "Liked": {
          "Liked": false,
          "LikeCount": 10
        },
        "data": {
          "area": "PBOX",
          "street": "0",
          "scr": "1",
          "loc": {
            "z": 243.39,
            "x": -74.73,
            "y": -821.38
          },
          "mode": "FREEMODE",
          "slf": false,
          "mug": false,
          "drctr": false,
          "meme": false
        },
        "location": "Pillbox Hill",
Parameters:
  • crew_name – target crew

Content creator jobs

GET /crewapi/(crew_name)/gtav/job

Returns the latest job as well as the total count.

Example request:

GET /crewapi/rebl_xb1/gtav/job HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "model,type,mode,racetype,aveh",
  "Count": 1,
  "Total": 1394,
  "Missions": [
    {
      "MissionId": "O2Tl6cl4TEa2Krt5mAYZKg",
      "Content": {
        "Metadata": {
          "_id": "O2Tl6cl4TEa2Krt5mAYZKg",
          "cat": "none",
          "cdate": "Jan-18-2017 05:48:47",
          "pdate": "2017-01-18T05:48:53Z",
          "data": {
            "mission": {
              "gen": {
                "type": "Race",
                "char": 0,
                "endtype": 0,
                "min": 1,
                "mtnum": 1,
                "num": 4,
                "rad": 0,
                "rank": 1,
                "start": {
                  "z": 29.94,
                  "x": -1372.85,
                  "y": -515.7
                },
                "subtype": 1,
Parameters:
  • crew_name – target crew

Hierarchy

GET /crewapi/(crew_name)/hierarchy/false?pageSize=(items_per_page)&pageIndex=(page_number)&onlineService=sc

Returns the crew hierarchy. You have to increment pageNumber to browse through the pagination.

Example request:

GET /crewapi/rebl_xb1/hierarchy/false?pageSize=999&pageIndex=0&onlineService=sc HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "sl_translate": "Description,Permissions,InviteText,InviteSubText,DateJoined,RankName,RankNamePlural",
  "data": {
    "hierarchy": {
      "Data": {
        "Total": 643,
        "CrewId": 20242331,
        "CrewName": "REBL XB1",
        "CrewTag": "REBL",
        "CrewColor": "#0047AB",
        "IsLeader": false,
        "MyRank": 4,
        "Ranks": [
          {
            "RankName": "leader",
            "RankNamePlural": "leader",
            "RankNameGa": "leader",
            "Description": "The Crew founder and head honcho. Their power is absolute.",
            "RankOrder": 0,
            "RankMemberCount": 1,
            "RankMemberTotalCount": 1,
            "SystemFlags": 9223372036854776000,
            "Permissions": [
              "Kick members",
              "Invite new members",
              "Promote members",
              "Demote members",
              "Manage role permissions",
              "Publish multiple emblems",
              "Write on wall",
Parameters:
  • crew_name – target crew name
Query Parameters:
 
  • items_per_page – number of items per page
  • page_number – page number, starts with 0

Player snaps

GET /member/(nickname)/games/gtav/snapmatic/ajax/search?[SearchQuery=(search_query)&]Filter=(filter)&page=(page_number)

Returns 12 snapmatic pictures of the specific player. Make sure to increase page_number to browse through the pagination.

Example request:

GET /member/restlessnarwhal/games/gtav/snapmatic/ajax/search?Filter=MostRecent&page=1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 17,
  "CurrentPage": 1,
  "Photos": [
    {
      "Meta": {
        "CreatedTimestamp": 1455305569,
        "Name": "Mount Chiliad",
        "HardTags": [
          "#MountChiliad"
        ],
        "UserTags": [],
        "Liked": {
          "Liked": false,
          "LikeCount": 0
        },
        "data": {
          "area": "MTCHIL",
          "street": "0",
          "scr": "1",
          "loc": {
            "z": 779.92,
            "x": 452.17,
            "y": 5616.72
          },
          "mode": "FREEMODE",
          "plyrs": [
            "2533274798608031"
          ],
          "slf": false,
Parameters:
  • nickname – target player
Query Parameters:
 
  • search_query (optional) – a specific term to search for
  • filter – allowed values: mostrecent, trending, popular (all-time), myfriends, myphotos, mythumbsup
  • page_number – page number, starting with 1

Crew snaps

GET /crew/(crew_name)/games/gtav/snapmatic/ajax/search?[SearchQuery=(search_query)&]Filter=(filter)&page=(page_number)

Lists 12 snaps from a specific crew. Make sure to increase page_number to browse through the pagination.

Example request:

GET /crew/rebl_xb1/games/gtav/snapmatic/ajax/search?Filter=MostRecent&page=1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 307,
  "CurrentPage": 1,
  "Photos": [
    {
      "Meta": {
        "CreatedTimestamp": 1482465043,
        "Name": "Del Perro",
        "HardTags": [
          "#DelPerro"
        ],
        "UserTags": [],
        "Liked": {
          "Liked": false,
          "LikeCount": 0
        },
        "data": {
          "area": "DELPE",
          "street": "0",
          "scr": "1",
          "loc": {
            "z": 108.52,
            "x": -1573.5,
            "y": -571.73
          },
          "mode": "FREEMODE",
          "plyrs": [
            "2533274827988923"
          ],
          "slf": true,
Parameters:
  • crew_name – target crew
Query Parameters:
 
  • search_query (optional) – a specific term to search for
  • filter – allowed values: mostrecent, trending, popular (all-time), myfriends, myphotos, mythumbsup
  • page_number – page number, starting with 1

Global snaps

GET /games/gtav/snapmatic/ajax/search?[SearchQuery=(search_query)&]Filter=(filter)&Page=(page_number)

You can use this endpoint in case you want to browse through global snapsmatics rather than specific crew or player ones. It’ll returns 12 snaps per page. Make sure to increase page_number to browse through the pagination.

Example request:

GET /games/gtav/snapmatic/ajax/search?Filter=MostRecent&Page=1 HTTP/1.1
Host: socialclub.rockstargames.com

Example response (full):

{
  "Total": 2149574,
  "CurrentPage": 1,
  "Photos": [
    {
      "Meta": {
        "CreatedTimestamp": 1484749579,
        "Name": "LMAO",
        "HardTags": [
          "#Burton"
        ],
        "UserTags": [],
        "SongName": "AB-SOUL FEAT. KENDRICK LAMAR - ILLuminate",
        "SongUrl": "https://embed.spotify.com/?uri=spotify:track:3tK9aXMLi2QSMvxAS7rpv5",
        "Liked": {
          "Liked": false,
          "LikeCount": 0
        },
        "data": {
          "area": "BURTON",
          "street": "0",
          "scr": "1375",
          "loc": {
            "z": 38.68,
            "x": -392.9,
            "y": -113.79
          },
          "mode": "FREEMODE",
          "plyrs": [
            "2533274904989274"
Query Parameters:
 
  • filter – allowed values: mostrecent, trending, popular (all-time), myfriends, myphotos, mythumbsup
  • page_number – page number, starting with 1
  • search_query (optional) – a specific term to search for

Contributors

Special thanks for all the people who had helped this project so far: