1. Home
  2. API Documentation

Web API Endpoint Reference

Our Web API endpoints give external applications access to our database.

Web API Base URL: https://api.steamanalyst.com

Endpoints

Get data for all items

GET https://api.steamanalyst.com/v2/{API_KEY}

Request Parameters

ParameterValue
{API_KEY}Your personal API key

Example

curl -X GET "https://api.steamanalyst.com/v2/{API_KEY}"

Response Format

On success, the HTTP status code in the response header is 200 OK and the response body contains an item object in JSON format. On error, the header status code is an error code.

Response Examples

CS:GO Items under $400
{
  "market_name": "AK-47 | Fire Serpent (Field-Tested)",
  "avg_price_7_days": "193.25",
  "avg_price_7_days_raw": 193.24617,
  "avg_price_30_days": "202.42",
  "avg_price_30_days_raw": 202.41661,
  "link": "https://www.steamanalyst.com/id/1032/",
  "current_price": "208.55",
  "current_price_last_checked": "2017-05-30 10:40:06",
  "sold_last_24h": "8",
  "sold_last_7d": "81",
  "avg_daily_volume": "12",
  "img": "https://steamcommunity-a.akamaihd.net/economy/image/...",
  "rarity": "Covert Rifle",
  "ongoing_price_manipulation": "0"
}
Rare Items (over $400)
{
  "market_name": "★ Karambit | Fade (Factory New)",
  "suggested_amount_avg": "583.75",
  "suggested_amount_avg_raw": 583.75,
  "suggested_amount_min": "567.50",
  "suggested_amount_min_raw": 567.5,
  "suggested_amount_max": "600.00",
  "suggested_amount_max_raw": 600,
  "link": "https://www.steamanalyst.com/id/17462/",
  "current_price": "553.53",
  "current_price_last_checked": "2017-05-30 10:09:09",
  "sold_last_24h": "1",
  "sold_last_7d": "20",
  "avg_daily_volume": "3",
  "img": "https://steamcommunity-a.akamaihd.net/economy/image/...",
  "rarity": "★ Covert Knife",
  "ongoing_price_manipulation": "0"
}
Doppler and Gamma Doppler Knives (if applicable)
{
  "market_name": "★ Bayonet | Doppler (Factory New)",
  "suggested_amount_avg": "952.50",
  "suggested_amount_avg_raw": 952.5,
  "suggested_amount_min": "217.50",
  "suggested_amount_min_raw": 217.5,
  "suggested_amount_max": "1,687.50",
  "suggested_amount_max_raw": 1687.5,
  "phases": {
    "Black Pearl": {
      "min": 694.45,
      "max": 937.5,
      "avg": 815.975
    },
    "Phase 1": {
      "min": 221.7,
      "max": 228.5,
      "avg": 225.1
    },
    "Phase 2": {
      "min": 234.44,
      "max": 252.93,
      "avg": 243.685
    },
    "Phase 3": {
      "min": 221.4,
      "max": 223.46,
      "avg": 222.43
    },
    "Phase 4": {
      "min": 224.45,
      "max": 244.24,
      "avg": 234.345
    },
    "Ruby": {
      "min": 1065.28,
      "max": 1150,
      "avg": 1107.64
    },
    "Sapphire": {
      "min": 1268.75,
      "max": 1555.63,
      "avg": 1412.19
    }
  },
  "link": "https://www.steamanalyst.com/id/60491877/",
  "current_price": "229.42",
  "current_price_last_checked": "2017-05-30 10:25:12",
  "sold_last_24h": "27",
  "sold_last_7d": "190",
  "avg_daily_volume": "27",
  "img": "https://steamcommunity-a.akamaihd.net/economy/image/...",
  "rarity": "★ Covert Knife",
  "ongoing_price_manipulation": "0"
}
Price Manipulation
{
  "market_name": "XM1014 | Jungle (Well-Worn)",
  "safe_price": "0.58",
  "safe_price_raw": 0.58323,
  "link": "https://www.steamanalyst.com/id/249/",
  "current_price": "5.18",
  "current_price_last_checked": "2016-08-30 05:16:16",
  "sold_last_24h": 3,
  "sold_last_7d": 56,
  "avg_daily_volume": 8,
  "img": "https://steamcommunity-a.akamaihd.net/economy/image/...",
  "ongoing_price_manipulation": "1"
}

Field Reference

KeyValue Description
market_nameMarket Hash Name of Item
avg_price_7_daysAverage price for the last 7 days (as shown on SteamAnalyst.com). Use this value for your CS:GO project.
avg_price_7_days_rawSame as "avg_price_7_days" without formatting.
avg_price_30_daysAverage price for the last 30 days (as shown on SteamAnalyst.com).
avg_price_30_days_rawSame as "avg_price_30_days" without formatting.
safe_priceReturns a safe price to use if there is an ongoing price manipulation.
safe_price_rawSame as "safe_price" without formatting.
avg7_1yrAverage price for 7 days exactly 1 year ago. Can be used to come up with your own solution against price manipulation.
avg30_1yrAverage price for 30 days exactly 1 year ago. Can be used to come up with your own solution against price manipulation.
avg60_1yrAverage price for 60 days exactly 1 year ago. Can be used to come up with your own solution against price manipulation.
suggested_amount_avgAverage Price of Rare item as suggested by our community and other various sources. Use at your own risk for items such as fade, doppler, gamma doppler, etc... as they vary greatly.
suggested_amount_minMinimum Price of Rare item as suggested by our community and other various sources. This usually represents low tier patterns, fades, phases. This should be used for most projects.
suggested_amount_maxMaximum Price of Rare item as suggested by our community and other various sources. This usually represents high tier patterns, fades, phases.
phasesOnly available for Doppler and Gamma Doppler knives. This value can be null or 0 for some items.
linkLink to item's page on SteamAnalyst.com
current_priceCurrent lowest price of item on Steam Market. Do not use this value for your CS:GO project. Use "avg_price_7_days" instead.
current_price_last_checkedDate when Steam Market price was last checked
sold_last_24hUnits sold on Steam Market last 24 hours (if available)
sold_last_7dUnits sold on Steam Market last 7 days (if available)
avg_daily_volumeAverage daily volume sold on Steam Market for the last 7 days
imgImage URL of item on Steam Community
rarityRarity of an item
ongoing_price_manipulationIndicates if we have detected a price manipulation on Steam Market. Returns 0 or 1. If set to 1, "avg_price_7_days" will no longer be returned. "safe_price" should be used in your CS:GO project.
suspiciousThis item has an unusually high price for its wear. Consider assigning a price manually.
SteamAnalyst
Powered by Steam.
Not affiliated with Valve Corp.
© 2013-2026 SteamAnalyst.com - Tracking prices since 2013
Check back soon for updates!
Skin.clubSkin.club
Clash.ggClash.gg
BitSkins.com
CSGOHowl.comCSGOHowl.com
About Us
Pricing Methodology
API
Feedback
Terms of Service
Privacy Policy
Affiliate Disclosure
All CS2 Tools
All CS2 Skins
All CS2 Stickers
All CS2 Cases
All CS2 Keys
All CS2 Agents
All CS2 Markets
Marketplace Reviews
Deals & Bargains
Market Dashboard
CS2 Guides
CS2 Stats Tracker
Knives
Rifles
Pistols
Sniper Rifles
Gloves
SMGs
Stickers
Cases
Doppler Skins
Fade Skins
Tiger Tooth Skins
Case Hardened Skins
AK-47
AWP
M4A4
M4A1-S
Karambit
Butterfly Knife
Desert Eagle
Glock-18
Dota 2
PUBG
CS.MoneyDMarketSkinportTradeItLis-Skins
CLASH.GG
SkinsMonkeySkinRave
SteamAnalyst.com
Browse All Collections
The Dead Hand CollectionThe Dead Hand CollectionThe Harlequin CollectionThe Harlequin CollectionThe Achroma CollectionThe Achroma CollectionThe Genesis CollectionThe Genesis CollectionThe Train 2025 CollectionThe Train 2025 CollectionThe Radiant CollectionThe Radiant CollectionThe Boreal CollectionThe Boreal CollectionThe Ascent CollectionThe Ascent CollectionThe Fever CollectionThe Fever CollectionThe Sport & Field CollectionThe Sport & Field CollectionThe Overpass 2024 CollectionThe Overpass 2024 CollectionThe Graphic Design CollectionThe Graphic Design CollectionThe Gallery CollectionThe Gallery CollectionThe Kilowatt CollectionThe Kilowatt CollectionThe Anubis CollectionThe Anubis CollectionThe Revolution CollectionThe Revolution CollectionThe Recoil CollectionThe Recoil CollectionThe Dreams & Nightmares CollectionThe Dreams & Nightmares CollectionThe Operation Riptide CollectionThe Operation Riptide CollectionThe Control CollectionThe Control CollectionThe Ancient CollectionThe Ancient CollectionThe 2021 Vertigo CollectionThe 2021 Vertigo CollectionThe 2021 Train CollectionThe 2021 Train CollectionThe 2021 Mirage CollectionThe 2021 Mirage CollectionThe 2021 Dust 2 CollectionThe 2021 Dust 2 Collection
Browse All Cases
Kilowatt CaseKilowatt CaseGallery CaseGallery CaseRevolution CaseRevolution CaseRecoil CaseRecoil CaseDreams & Nightmares CaseDreams & Nightmares CaseSnakebite CaseSnakebite CaseFracture CaseFracture CasePrisma 2 CasePrisma 2 CasePrisma CasePrisma CaseClutch CaseClutch CaseCS:GO Weapon CaseCS:GO Weapon Case
Browse All Capsules
Paris 2023 LegendsParis 2023 LegendsParis 2023 ChallengersParis 2023 ChallengersParis 2023 ContendersParis 2023 ContendersCopenhagen 2024 LegendsCopenhagen 2024 LegendsCopenhagen 2024 ChallengersCopenhagen 2024 ChallengersCopenhagen 2024 ContendersCopenhagen 2024 ContendersCharm CapsuleCharm Capsule10 Year Birthday Sticker Capsule10 Year Birthday Sticker Capsule
StickersStickersCharmsCharmsAgentsAgentsPatchesPatchesGraffitiGraffitiMusic KitsMusic KitsCollectiblesCollectiblesKeysKeysPassesPassesToolsTools
Browse All Colors
BlackBlueRedGreenWhiteGoldPurpleOrangePinkYellowCyanGreyBrownTanLimeCamoRainbowFloralAnimalTwo-Tone
Most ExpensiveDealsTop 500 InventoriesSearch Item DBLoadout BuilderCommunity LoadoutsBrowse InventoriesMarketplaces