Goldmine
Pricing

Get the latest pricing for items across sources

POST
/analytics.v1.Analytics/GetPricing

Returns the most recent price, bid, listing count, volume, and liquidity figures for one or more items, optionally narrowed to specific market sources. Every monetary value is reported in US cents.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://loading/analytics.v1.Analytics/GetPricing" \  -H "Content-Type: application/json" \  -d '{    "marketHashNames": [      "AK-47 | Redline (Field-Tested)",      "AWP | Asiimov (Field-Tested)"    ],    "sources": [      "market-csgo",      "buff163"    ]  }'
{
  "entries": [
    {
      "marketHashName": "AK-47 | Redline (Field-Tested)",
      "source": "market-csgo",
      "priceCents": "150000",
      "bidCents": "148000",
      "listingsCount": 342,
      "volume": 128,
      "avg7dCents": "151200",
      "avg30dCents": "149800",
      "liquidity": 0.82,
      "observedAt": "2026-06-29T11:30:00Z",
      "supply": 342
    }
  ]
}
{
  "code": "invalid_argument",
  "message": "The request was malformed, such as a missing required field or an unparseable cursor."
}
{
  "code": "unauthenticated",
  "message": "The request lacks a valid API key in the Authorization header."
}
{
  "code": "permission_denied",
  "message": "The API key is not allowed to perform this action on this workspace."
}
{
  "code": "resource_exhausted",
  "message": "The request was rate limited. Slow down and retry later."
}
{
  "code": "internal",
  "message": "An internal server error occurred."
}