# Youpin sale history endpoint

July 28, 2026

[POST /v1/archive/youpin](/docs/archive-youpin) returns Youpin sale history at three granularities:

- Hourly data from July 20, 2026
- 4-hour data from June 27, 2026
- 12-hour data from November 12, 2025

```json
{
  "currency": "USD",
  "items": {
    "★ Karambit | Doppler (Factory New)": {
      "market_hash_name": "★ Karambit | Doppler (Factory New)",
      "intervals": {
        "1h": {
          "count": 120,
          "data": [
            { "bucket": "2026-07-21T16:00:00Z", "time": "2026-07-21T16:52:38.307Z", "price": 1314.88 }
          ]
        },
        "12h": {
          "count": 353,
          "data": [
            { "bucket": "2026-01-29T16:00:00Z", "time": "2026-01-30T03:34:33.138Z", "price": 2256.76 }
          ]
        }
      },
      "variants": {
        "Phase 2": {
          "display_name": "Phase 2",
          "version": "p2",
          "intervals": {
            "12h": {
              "count": 356,
              "data": [
                { "bucket": "2026-01-29T04:00:00Z", "time": "2026-01-29T15:46:01.526Z", "price": 2296.22 }
              ]
            }
          }
        }
      }
    }
  }
}
```

Youpin only provides sale prices, but you can estimate a minimum volume by counting the occurrence of sales within a given period.

Approximately 16,000 items are supported (anything at or above `liquid` on [GET /v1/liquidity/items](/docs/liquidity-items)), including Doppler & Case Hardened variant items.

This endpoint is available on the `scale` plan.
