Ready to load the remote SQLite database.
-
Database: steamauto.jiajiaxd.com/base_info/cs2/db
The page downloads the versioned CS2 SQLite database generated by Steamauto and queries it locally in your browser.
GET https://steamauto.jiajiaxd.com/base_info/cs2/check
GET https://steamauto.jiajiaxd.com/base_info/cs2/db?sha256={sha256}
| Table / Field | Type | Description |
|---|---|---|
items_v2 | view | Item names, Hashnames, and Steam Market mapping data. |
platform_items | table | Third-party platform item ID mappings. |
market_bucket_group_id | TEXT / NULL | Steam's new Market bucket group ID. |
mapping_status | TEXT | Mapping state from the items_v2 view. |
This page only displays mappings that have a GID and are seeded or verified.
market_bucket_group_id IS NOT NULL
AND mapping_status IN ('seeded', 'verified')
SELECT
name,
market_hash_name,
market_bucket_group_id
FROM items_v2
WHERE market_hash_name = 'Negev | Desert-Strike (Field-Tested)'
AND market_bucket_group_id IS NOT NULL
AND mapping_status IN ('seeded', 'verified');